.miz-scroll-progress{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--miz-blue), var(--miz-cyan));
  pointer-events: none;
  will-change: transform;
}
.miz-section{
  transition: background-color .28s var(--miz-ease);
}
.miz-section[data-section]::before{
  height: 2px;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, .22), rgba(10, 132, 255, .48), rgba(0, 217, 255, .18), transparent);
  box-shadow: 0 0 24px rgba(10, 132, 255, .18);
}
.miz-section-light[data-section]::before{
  background:
    linear-gradient(90deg, transparent, rgba(7, 19, 37, .10), rgba(10, 132, 255, .34), rgba(0, 217, 255, .18), transparent);
}
.miz-section-problem{
  background:
    radial-gradient(circle at 14% 8%, rgba(10,132,255,.16), transparent 32%),
    radial-gradient(circle at 86% 18%, rgba(0,217,255,.08), transparent 26%),
    linear-gradient(180deg, #f8fbff 0%, rgba(7,19,37,.98) 8%, rgba(2,8,19,.98) 100%);
}


/* Sanfter Übergang: Hero (hell) → Problem (dunkel) */
.miz-section-problem::before{
  background: linear-gradient(90deg,
    transparent,
    rgba(255,255,255,.12),
    rgba(10,132,255,.38),
    transparent
  ) !important;
}


/* Problem → Solution (hell) */
.miz-section-problem::after{
  height: 160px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(248,251,255,.80) 80%,
    rgba(248,251,255,.98) 100%
  );
}
.miz-section-problem .miz-section-head p{
  color: rgba(247, 251, 255, .78);
}
.miz-section-solution{
  background:
    radial-gradient(circle at 92% 6%, rgba(10,132,255,.08), transparent 32%),
    radial-gradient(circle at 8% 80%, rgba(0,160,230,.06), transparent 36%),
    linear-gradient(180deg, #edf4fb 0%, #e4eff8 54%, #ddeaf5 100%);
}
.miz-section[id="vertrauen"]{
  background:
    radial-gradient(circle at 90% 12%, rgba(10,132,255,.09), transparent 38%),
    radial-gradient(circle at 6% 72%, rgba(37,211,102,.06), transparent 32%),
    linear-gradient(180deg, #f0f6fc 0%, #e6f0f9 52%, #dde9f5 100%);
}
.miz-section[id="ablauf"]{
  background:
    radial-gradient(circle at 76% 0%, rgba(10, 132, 255, .16), transparent 30%),
    linear-gradient(180deg, rgba(5, 14, 28, .98), rgba(2, 8, 19, .98));
}
.miz-section-faq{
  background:
    radial-gradient(circle at 18% 4%, rgba(10, 132, 255, .15), transparent 28%),
    radial-gradient(circle at 84% 20%, rgba(0, 217, 255, .10), transparent 24%),
    linear-gradient(180deg, rgba(2, 8, 19, .98), rgba(6, 17, 32, .98));
}
.miz-section-faq::after{
  height: 70px;
  background: linear-gradient(180deg, transparent, rgba(248, 251, 255, .92));
}
.miz-nav{
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  width: min(1240px, calc(100% - 32px));
  min-height: 68px;
  margin: 0;
  padding: 10px 12px 10px 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--miz-line);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, .055)),
    rgba(8, 15, 27, .62);
  box-shadow: 0 20px 58px rgba(0, 0, 0, .32), inset 0 1px 0 rgba(255, 255, 255, .12);
  backdrop-filter: blur(22px) saturate(145%);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
  transform: translateX(-50%);
  transition: min-height .24s var(--miz-ease), transform .24s var(--miz-ease), background .24s var(--miz-ease);
}
.miz-nav.is-scrolled{
  min-height: 62px;
  transform: translateX(-50%) translateY(-2px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .045)),
    rgba(8, 15, 27, .78);
}
.miz-brand img{
  width: 158px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(255, 255, 255, .15));
}
.miz-nav-links{
  display: flex;
  justify-content: center;
  gap: 5px;
}
.miz-nav-link,
.miz-nav-links > a{
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 11px;
  border: 0;
  border-radius: 16px;
  color: rgba(247, 251, 255, .78);
  background: transparent;
  font-size: 14px;
  font-family: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s var(--miz-ease), color .2s var(--miz-ease), transform .2s var(--miz-ease);
}
.miz-nav-link__icon{
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #9ed0ff;
  background: rgba(10, 132, 255, .11);
  border: 1px solid rgba(10, 132, 255, .16);
  font-size: 14px;
}
.miz-nav-link:hover,
.miz-nav-links > a:hover{
  background: rgba(255, 255, 255, .10);
  color: #fff;
  transform: translateY(-1px);
}
.miz-nav-cta{
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border-radius: 16px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--miz-blue), var(--miz-blue-2));
  box-shadow: 0 16px 34px rgba(10, 132, 255, .28), inset 0 1px 0 rgba(255, 255, 255, .18);
}
.miz-nav-toggle{
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  cursor: pointer;
}
.miz-nav-toggle span{
  width: 18px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: #fff;
  transition: transform .22s var(--miz-ease), opacity .22s var(--miz-ease);
}
.miz-nav.is-menu-open .miz-nav-toggle span:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}
.miz-nav.is-menu-open .miz-nav-toggle span:nth-child(2){
  opacity: 0;
}
.miz-nav.is-menu-open .miz-nav-toggle span:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}
.miz-mobile-menu{
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 12px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .045)),
    rgba(8, 15, 27, .74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}
.miz-mobile-menu[hidden]{
  display: none;
}
.miz-mobile-menu__section{
  display: grid;
  gap: 8px;
}
.miz-mobile-menu__section span{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 4px 4px;
  color: #9ed0ff;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.miz-mobile-menu__section a{
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 12px;
  border-radius: 13px;
  color: rgba(247, 251, 255, .88);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .08);
  font-weight: 850;
}
.miz-mobile-menu__section > span i,
.miz-mobile-menu__section > a i{
  width: 21px;
  height: 21px;
  min-width: 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #9ed0ff;
  background: rgba(10, 132, 255, .10);
  border: 1px solid rgba(10, 132, 255, .15);
  font-size: 13px;
}
/* CTA-Block im Mobile-Menue: gestapelte Voll-Breite-Buttons.
   Basis-Layout war beim CSS-Cleanup verloren gegangen -> Links liefen
   als inline-Text aus dem Glas-Container heraus. */
.miz-mobile-menu__cta{
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 2px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.miz-mobile-menu__cta a{
  min-width: 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 14px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--miz-blue), var(--miz-blue-2));
  border: 1px solid rgba(158, 208, 255, .32);
  box-shadow: 0 14px 30px rgba(10, 132, 255, .22), inset 0 1px 0 rgba(255, 255, 255, .18);
  font-weight: 850;
  font-size: 14px;
  text-align: center;
}
.miz-mobile-menu__cta a i{
  width: 20px;
  height: 20px;
  min-width: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.miz-hero{
  position: relative;
  min-height: max(680px, calc(100svh - 32px));
  max-height: 1080px;
  padding: clamp(72px, 10vh, 108px) 0 clamp(56px, 8vh, 96px);
  overflow: hidden;
  color: var(--miz-text);
  background:
    radial-gradient(circle at 22% 8%, rgba(10,132,255,.09), transparent 38%),
    radial-gradient(circle at 68% 60%, rgba(0,160,240,.05), transparent 42%),
    linear-gradient(180deg, #f4f9fe 0%, #eaf2fa 100%);
}
.miz-hero-bg{
  position: absolute;
  inset: 0;
  height: auto;
  background:
    linear-gradient(90deg,
      rgba(248,252,255,.84) 0%,
      rgba(248,252,255,.58) 32%,
      rgba(248,252,255,.14) 56%,
      rgba(7,19,37,.04) 100%
    ),
    linear-gradient(180deg,
      rgba(255,255,255,.46) 0%,
      rgba(255,255,255,.04) 44%,
      rgba(244,249,255,.82) 100%
    ),
    radial-gradient(circle at 20% 14%, rgba(10,132,255,.10), transparent 28%),
    radial-gradient(circle at 74% 20%, rgba(0,217,255,.06), transparent 26%),
    url("./images/Homeinto1.webp");
  background-size: cover;
  background-position: 60% center;
  pointer-events: none;
}


/* Kein backdrop-blur auf dem Hintergrund — performanter */
.miz-hero-bg::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(10,132,255,.07), transparent 34%),
    radial-gradient(circle at 78% 8%, rgba(0,217,255,.05), transparent 28%);
  pointer-events: none;
}


/* Perfekter Übergang Hero → nächste Section */
.miz-hero::after{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 180px;
  background: linear-gradient(180deg,
    rgba(248,251,255,0) 0%,
    rgba(248,251,255,.82) 62%,
    #f8fbff 100%
  );
  pointer-events: none;
  z-index: 2;
}
.miz-hero-grid{
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, .66fr);
  gap: clamp(40px, 4.4vw, 64px);
  align-items: center;
}
.miz-hero-copy h1{
  max-width: 850px;
  margin: 22px 0 0;
  font-size: var(--miz-fs-h1);
  line-height: var(--miz-lh-h1);
  letter-spacing: var(--miz-ls-h1);
  color: #071325;
  text-shadow: 0 2px 0 rgba(255, 255, 255, .52);
}
.miz-hero-copy p{
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(15, 23, 40, .76);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.68;
}
.miz-hero-copy > .miz-pill{
  color: #075fd4;
  border-color: rgba(10, 132, 255, .18);
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 10px 26px rgba(7, 19, 37, .08), inset 0 1px 0 rgba(255, 255, 255, .90);
}
.miz-hero-category-nav{
  width: min(760px, 100%);
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.miz-hero-category-nav a{
  min-width: 0;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 3px 10px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  color: rgba(15, 23, 40, .86);
  border: 1px solid rgba(10, 28, 48, .10);
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 12px 28px rgba(7, 19, 37, .07), inset 0 1px 0 rgba(255, 255, 255, .90);
  transition: transform .22s var(--miz-ease), background .22s var(--miz-ease), border-color .22s var(--miz-ease);
}
.miz-hero-category-nav a:hover{
  transform: translateY(-2px);
  border-color: rgba(10, 132, 255, .34);
  background: #fff;
}
.miz-hero-category-nav i{
  grid-row: span 2;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--miz-blue), var(--miz-blue-2));
  border: 1px solid rgba(10, 132, 255, .42);
  box-shadow: 0 6px 14px rgba(10, 132, 255, .28);
  font-size: 18px;
}
.miz-hero-category-nav strong{
  min-width: 0;
  color: var(--miz-text);
  font-size: 14px;
  line-height: 1.15;
}
.miz-hero-category-nav span{
  min-width: 0;
  color: var(--miz-text-soft);
  font-size: 12px;
  line-height: 1.3;
}
.miz-hero-panel,
.miz-service-card,
.miz-info-card,
.miz-contact-card{
  transition: transform .28s var(--miz-ease), box-shadow .28s var(--miz-ease), border-color .28s var(--miz-ease);
}
.miz-hero-panel:hover,
.miz-service-card:hover,
.miz-info-card:hover{
  transform: translateY(-3px);
  border-color: rgba(10, 132, 255, .30);
  box-shadow:
    0 30px 78px rgba(0, 0, 0, .34),
    0 0 34px rgba(10, 132, 255, .11),
    inset 0 1px 0 rgba(255, 255, 255, .16);
}
.miz-section-light .miz-service-card{
  color: var(--miz-text);
  border: var(--miz-card-border-light);
  background: var(--miz-card-bg-light);
  box-shadow:
    0 24px 64px rgba(7, 19, 37, .10),
    0 8px 22px rgba(7, 19, 37, .05),
    inset 0 1px 0 rgba(255, 255, 255, .92);
}
.miz-section-light .miz-service-card:hover{
  border-color: rgba(10, 132, 255, .24);
  box-shadow:
    0 28px 74px rgba(7, 19, 37, .14),
    0 0 34px rgba(10, 132, 255, .12),
    inset 0 1px 0 rgba(255, 255, 255, .94);
}
.miz-section-light .miz-service-card h3{
  color: var(--miz-text);
}
.miz-section-light .miz-service-card p{
  color: var(--miz-text-soft);
}
.miz-section-light .miz-service-tag,
.miz-section-light .miz-service-card a:not(.miz-btn){
  color: #075fd4;
}
.miz-hero-panel{
  position: relative;
  overflow: hidden;
  border-radius: var(--miz-radius-lg);
  min-height: 600px;
  border-color: rgba(255, 255, 255, .18);
  box-shadow:
    0 40px 110px rgba(0, 0, 0, .44),
    0 0 48px rgba(10, 132, 255, .12),
    inset 0 1px 0 rgba(255, 255, 255, .16);
}
.miz-hero-panel::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .16), transparent 30%),
    radial-gradient(circle at 78% 0%, rgba(10, 132, 255, .18), transparent 32%);
}
.miz-hero-visual{
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #061220;
}
.miz-hero-visual > img{
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: 50% 48%;
  transform: scale(1.04);
  filter: saturate(.96) contrast(1.04) brightness(.92);
}
.miz-hero-visual__image{
  object-fit: cover;
  object-position: 58% 50%;
  filter: saturate(1.02) contrast(1.02);
  transform: scale(1.02);
}
.miz-hero-visual::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 14%, rgba(10, 132, 255, .30), transparent 32%),
    linear-gradient(180deg, transparent 42%, rgba(2, 8, 19, .74) 100%),
    linear-gradient(135deg, rgba(255, 255, 255, .10), transparent 34%);
}
.miz-info-card,
.miz-service-card,
.miz-contact-card{
  border-radius: var(--miz-radius);
}
[data-spotlight]{
  --spotlight-x: 50%;
  --spotlight-y: 0%;
}
[data-spotlight]::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--spotlight-x) var(--spotlight-y), rgba(255, 255, 255, .20), transparent 30%);
  transition: opacity .22s var(--miz-ease);
}
[data-spotlight]:hover::before{
  opacity: 1;
}
.miz-section-head-dark{
  color: #fff;
}
.miz-card-grid,
.miz-service-grid{
  display: grid;
  gap: var(--miz-grid-gap);
}
.miz-card-grid-3,
.miz-service-grid{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.miz-info-card{
  position: relative;
  min-height: auto;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .145), rgba(255, 255, 255, .04)),
    linear-gradient(180deg, rgba(13, 31, 52, .94), rgba(3, 10, 20, .96));
  box-shadow:
    0 34px 92px rgba(0, 0, 0, .44),
    0 12px 34px rgba(0, 0, 0, .24),
    inset 0 1px 0 rgba(255, 255, 255, .16);
}
.miz-info-card:hover{
  border-color: rgba(10, 132, 255, .40);
  box-shadow:
    0 42px 110px rgba(0, 0, 0, .52),
    0 0 44px rgba(10, 132, 255, .16),
    inset 0 1px 0 rgba(255, 255, 255, .18);
}
.miz-info-card::after{
  content: "";
  position: absolute;
  inset: 0 0 auto;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(2, 8, 19, .08) 0%, rgba(2, 8, 19, .14) 100%),
    linear-gradient(135deg, rgba(255, 255, 255, .10), transparent 30%);
  height: clamp(260px, 20vw, 340px);
  z-index: 2;
}
.miz-info-media{
  --miz-image-tilt: -1.5deg;
  position: relative;
  z-index: 1;
  height: clamp(260px, 20vw, 340px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #061220;
}
.miz-info-media::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0;
  border: 0;
  background:
    radial-gradient(circle at 18% 14%, rgba(10, 132, 255, .20), transparent 31%),
    radial-gradient(circle at 84% 20%, rgba(0, 217, 255, .10), transparent 28%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .10);
  z-index: 2;
  mix-blend-mode: screen;
}
.miz-info-media::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .10), transparent 28%),
    linear-gradient(180deg, rgba(2, 8, 19, .06) 0%, rgba(2, 8, 19, .18) 46%, rgba(2, 8, 19, .76) 100%);
  z-index: 3;
}
.miz-info-media img{
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transform-origin: 50% 72%;
  filter: saturate(.94) contrast(1.02) brightness(.94);
  transform: perspective(900px) rotateZ(0deg) rotateX(0deg) scale(1.04);
  transition: transform .34s var(--miz-ease), filter .34s var(--miz-ease);
}
.miz-info-card:hover .miz-info-media--live img{
  filter: drop-shadow(0 30px 46px rgba(7, 19, 37, .22)) saturate(1.06);
  transform: perspective(900px) translate3d(0, -4px, 14px) rotateZ(var(--miz-image-tilt)) rotateX(.8deg) scale(1.08);
}
.miz-info-media--scenario{
  isolation: isolate;
  background:
    radial-gradient(68% 54% at 50% 40%, rgba(26, 104, 190, .36), transparent 62%),
    radial-gradient(circle at 16% 12%, rgba(10, 132, 255, .32), transparent 34%),
    radial-gradient(circle at 84% 16%, rgba(0, 217, 255, .18), transparent 30%),
    linear-gradient(135deg, #04101e 0%, #0a1c33 46%, #01060f 100%);
}
.miz-info-media--scenario::before{
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .15), transparent 36%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 20px);
  opacity: .78;
  mix-blend-mode: screen;
}
.miz-info-media--scenario::after{
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .12), transparent 30%),
    radial-gradient(120% 80% at 50% 38%, transparent 52%, rgba(2, 8, 19, .42) 100%),
    linear-gradient(180deg, rgba(2, 8, 19, .04) 0%, rgba(2, 8, 19, .18) 48%, rgba(2, 8, 19, .72) 100%);
}

.miz-map-grid{
  position: absolute;
  right: 10%;
  bottom: 1%;
  display: flex;
  gap: 7px;
  padding: 8px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .13);
}
.miz-map-grid i{
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--miz-blue), var(--miz-blue-2));
  box-shadow: 0 10px 22px rgba(10, 132, 255, .24);
  font-size: 18px;
}
.miz-info-card:hover .miz-info-media img{
  filter: saturate(1.01) contrast(1.04) brightness(.98);
  transform: perspective(900px) translate3d(0, -3px, 14px) rotateZ(var(--miz-image-tilt)) rotateX(.8deg) scale(1.09);
}
.miz-info-card:nth-child(2) .miz-info-media{
  --miz-image-tilt: 1.6deg;
}
.miz-info-card:nth-child(2) .miz-info-media img{
  object-position: 58% 50%;
}
.miz-info-card:nth-child(3) .miz-info-media{
  --miz-image-tilt: -2.2deg;
}
.miz-info-card:nth-child(3) .miz-info-media img{
  object-position: 42% 50%;
}
.miz-info-body{
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 3;
  min-height: 280px;
  margin: -1px 0 0;
  padding: 26px 26px 28px;
  border-radius: 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, .13);
  background:
    radial-gradient(circle at 12% 0%, rgba(10, 132, 255, .12), transparent 34%),
    linear-gradient(135deg, rgba(6, 14, 26, .98), rgba(10, 20, 35, .95));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .14),
    inset 0 24px 60px rgba(255, 255, 255, .025);
  backdrop-filter: blur(20px) saturate(142%);
  -webkit-backdrop-filter: blur(20px) saturate(142%);
}
.miz-card-number{
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(140, 199, 255, .20);
  background: rgba(10, 132, 255, .12);
  margin-bottom: 14px;
  color: #8cc7ff;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.miz-info-card h3,
.miz-service-card h3{
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -.025em;
}
.miz-info-card h3{
  color: #fff;
  font-size: clamp(22px, 2.2vw, 26px);
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: -.025em;
}
.miz-info-card p,
.miz-service-card p{
  margin: 14px 0 0;
  line-height: 1.7;
  color: var(--miz-muted);
}
.miz-info-card p{
  color: rgba(247, 251, 255, .84);
  font-size: 14.5px;
  line-height: 1.62;
  font-weight: 700;
}
.miz-info-card blockquote{
  margin: 16px 0 0;
  padding: 13px 14px;
  border-left: 3px solid rgba(140, 199, 255, .78);
  border-radius: 14px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(10, 132, 255, .18), rgba(255, 255, 255, .045));
  box-shadow:
    0 12px 28px rgba(0, 0, 0, .16),
    inset 0 1px 0 rgba(255, 255, 255, .10);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 850;
}
.miz-problem-bridge{
  margin-top: 24px;
  padding: 24px 26px;
  border-radius: var(--miz-radius);
  border: 1px solid rgba(255, 255, 255, .13);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .04)),
    rgba(7, 19, 37, .70);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, .24),
    inset 0 1px 0 rgba(255, 255, 255, .10);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}
.miz-section-cta{
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 24px 26px;
  border-radius: var(--miz-radius);
}
.miz-section-cta__icon{
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--miz-blue), var(--miz-blue-2));
  box-shadow:
    0 14px 28px rgba(10, 132, 255, .32),
    inset 0 1px 0 rgba(255, 255, 255, .22);
  font-size: 24px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.miz-section-cta--light .miz-section-cta__icon{
  background: linear-gradient(135deg, var(--miz-blue), var(--miz-blue-2));
  box-shadow:
    0 14px 28px rgba(10, 132, 255, .28),
    inset 0 1px 0 rgba(255, 255, 255, .22);
}


@media (max-width: 720px) {
  .miz-section-cta {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .miz-section-cta .miz-actions {
    justify-content: center;
  }
}
.miz-section-cta::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 0%, rgba(10, 132, 255, .20), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, .10), transparent 44%);
}
.miz-section-cta > *{
  position: relative;
  z-index: 1;
}
.miz-section-cta span:not(.miz-section-cta__icon):not(.miz-btn-icon),
.miz-section-cta strong{
  display: block;
}
.miz-section-cta span:not(.miz-section-cta__icon):not(.miz-btn-icon){
  color: #8cc7ff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.miz-section-cta strong{
  max-width: 680px;
  margin-top: 7px;
  font-size: clamp(21px, 2.2vw, 30px);
  line-height: 1.12;
  letter-spacing: -.025em;
}
.miz-section-cta .miz-actions{
  margin-top: 0;
  justify-content: flex-end;
}
.miz-section-cta--dark{
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .045)),
    rgba(7, 19, 37, .78);
  box-shadow:
    0 28px 78px rgba(0, 0, 0, .34),
    0 0 42px rgba(10, 132, 255, .10),
    inset 0 1px 0 rgba(255, 255, 255, .12);
  backdrop-filter: blur(20px) saturate(145%);
  -webkit-backdrop-filter: blur(20px) saturate(145%);
}
.miz-section-cta--light{
  color: var(--miz-text);
  border: 1px solid rgba(10, 28, 48, .12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(242, 247, 252, .88));
  box-shadow:
    0 24px 66px rgba(7, 19, 37, .11),
    inset 0 1px 0 rgba(255, 255, 255, .92);
}
.miz-section-cta--light span:not(.miz-section-cta__icon):not(.miz-btn-icon){
  color: #075fd4;
}
.miz-problem-bridge strong,
.miz-problem-bridge span{
  display: block;
}
.miz-problem-bridge strong{
  color: #fff;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.08;
  letter-spacing: -.025em;
}
.miz-problem-bridge span{
  max-width: 860px;
  margin-top: 10px;
  color: rgba(247, 251, 255, .76);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 700;
}
.miz-service-card{
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 420px;
  padding: var(--miz-card-pad);
  border-radius: var(--miz-radius);
}
.miz-service-card{
  display: flex;
  flex-direction: column;
}
.miz-section-light .miz-service-card{
  border-color: rgba(10, 60, 120, .12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(247, 251, 255, .97));
  box-shadow:
    0 32px 80px rgba(7, 19, 37, .13),
    0 8px 24px rgba(10, 60, 120, .07),
    inset 0 1px 0 rgba(255, 255, 255, .96);
}
.miz-section-light .miz-service-card:hover{
  border-color: rgba(10, 132, 255, .34);
  box-shadow:
    0 40px 100px rgba(7, 19, 37, .17),
    0 0 42px rgba(10, 132, 255, .12),
    inset 0 1px 0 rgba(255, 255, 255, .97);
}
.miz-service-media{
  position: relative;
  min-height: 210px;
  margin: calc(var(--miz-card-pad) * -1) calc(var(--miz-card-pad) * -1) 26px;
  overflow: hidden;
  border-bottom: 1px solid rgba(10, 28, 48, .06);
  background: #e8f0f8;
}
.miz-service-media::before{
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 1;
  border-radius: 22px;
  border: 1px solid rgba(10, 28, 48, .075);
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, .52), transparent 52%);
  pointer-events: none;
}
.miz-service-media::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .52), transparent 32%),
    linear-gradient(180deg, rgba(248, 251, 255, .02) 0%, rgba(248, 251, 255, .88) 100%);
}
.miz-service-media img{
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  object-position: center;
  filter: saturate(.96) contrast(1.04) brightness(.97);
  transform: scale(1.02);
  transition: transform .36s var(--miz-ease), filter .36s var(--miz-ease);
}
.miz-service-card:hover .miz-service-media--live img{
  filter: drop-shadow(0 24px 40px rgba(7, 19, 37, .18)) saturate(1.07);
  transform: scale(1.05) rotate(.3deg);
}
.miz-service-card:hover .miz-service-media--rebuild img{
  filter: saturate(1.08) contrast(1.06) brightness(.99);
  transform: scale(1.08) rotate(.25deg);
}
.miz-service-region{
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 3;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: #f8fbff;
  border: 1px solid rgba(255, 255, 255, .16);
  background:
    linear-gradient(135deg, rgba(10, 132, 255, .22), rgba(255, 255, 255, .06)),
    rgba(5, 14, 27, .64);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .22);
  backdrop-filter: blur(16px) saturate(145%);
  -webkit-backdrop-filter: blur(16px) saturate(145%);
  font-size: 12px;
  font-weight: 900;
}
.miz-service-explain{
  position: relative;
  z-index: 3;
  min-height: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  margin: -16px 0 22px;
  padding: 9px;
  border-radius: 18px;
  color: #102033;
  border: 1px solid rgba(10, 28, 48, .09);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(247, 250, 253, .78));
  box-shadow:
    0 18px 38px rgba(7, 19, 37, .08),
    inset 0 1px 0 rgba(255, 255, 255, .92);
  transition: transform .28s var(--miz-ease), box-shadow .28s var(--miz-ease), border-color .28s var(--miz-ease);
}
.miz-service-explain span,
.miz-service-explain strong{
  min-width: 0;
  display: block;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 900;
  text-align: center;
}
.miz-service-explain span{
  color: var(--miz-text-soft);
}
.miz-service-explain strong{
  color: var(--miz-text);
}
.miz-service-explain i{
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--miz-blue), var(--miz-blue-2));
  box-shadow: 0 10px 20px rgba(10, 132, 255, .22);
  font-size: 15px;
}
.miz-service-card:hover .miz-service-media img{
  filter: saturate(1.02) contrast(1.06) brightness(1.01);
  transform: scale(1.10) rotate(.45deg);
}
.miz-service-card:hover .miz-service-explain{
  transform: translateY(-2px);
  box-shadow:
    0 22px 46px rgba(7, 19, 37, .10),
    0 0 26px rgba(10, 132, 255, .10),
    inset 0 1px 0 rgba(255, 255, 255, .94);
}
.miz-service-card::after{
  content: "";
  position: absolute;
  inset: auto 18px 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(10, 132, 255, .52), transparent);
  opacity: .7;
}
.miz-service-tag{
  display: inline-flex;
  margin-bottom: 14px;
  color: #9ed0ff;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.miz-service-card > i{
  width: var(--miz-icon-size);
  height: var(--miz-icon-size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--miz-blue), var(--miz-blue-2));
  box-shadow: 0 18px 38px rgba(10, 132, 255, .24);
  font-size: 29px;
}
.miz-service-card > i{
  margin: 0 0 24px;
  box-shadow:
    0 18px 34px rgba(10, 132, 255, .24),
    0 0 0 8px rgba(255, 255, 255, .72);
}
.miz-service-card a:not(.miz-btn){
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  align-self: flex-start;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(10, 132, 255, .20);
  background: rgba(10, 132, 255, .08);
  margin-top: 22px;
  color: #075fd4;
  font-weight: 900;
}
.miz-service-card a:not(.miz-btn)::after{
  content: "→";
  margin-left: 8px;
}
.miz-addon-band{
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(260px, .62fr) minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 24px;
  border-radius: var(--miz-radius);
  border: 1px solid rgba(10, 28, 48, .13);
  background:
    radial-gradient(circle at 8% 10%, rgba(10, 132, 255, .13), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(239, 245, 251, .88));
  box-shadow:
    0 26px 72px rgba(7, 19, 37, .13),
    inset 0 1px 0 rgba(255, 255, 255, .94);
}
.miz-addon-band__visual{
  min-height: 174px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
  border-radius: 22px;
  border: 1px solid rgba(10, 28, 48, .10);
  background:
    linear-gradient(135deg, rgba(9, 23, 40, .94), rgba(4, 12, 23, .94));
  box-shadow:
    0 22px 50px rgba(7, 19, 37, .20),
    inset 0 1px 0 rgba(255, 255, 255, .12);
}
.miz-addon-band__visual span{
  min-height: 70px;
  display: grid;
  place-items: center;
  gap: 6px;
  border-radius: 18px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .045));
  font-size: 12px;
  font-weight: 900;
}
.miz-addon-band__visual i{
  color: #8cc7ff;
  font-size: 25px;
}
.miz-addon-band__body h3{
  margin: 0;
  color: var(--miz-text);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.08;
  letter-spacing: -.025em;
}
.miz-addon-band__body p{
  margin: 12px 0 0;
  max-width: 660px;
  color: var(--miz-text-soft);
  font-size: 16px;
  line-height: 1.66;
  font-weight: 720;
}
.miz-addon-band > .miz-btn{
  white-space: nowrap;
}
.miz-outcome-row{
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.miz-outcome-row div{
  min-height: 108px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(10, 28, 48, .13);
  background:
    radial-gradient(circle at 10% 0%, rgba(10, 132, 255, .10), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(239, 245, 251, .88));
  box-shadow:
    0 20px 48px rgba(7, 19, 37, .11),
    inset 0 1px 0 rgba(255, 255, 255, .92);
}
.miz-outcome-row strong{
  display: block;
  color: var(--miz-text);
  font-size: 19px;
  line-height: 1.1;
  letter-spacing: -.015em;
}
.miz-outcome-row span{
  display: block;
  margin-top: 8px;
  color: var(--miz-text-soft);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 720;
}
.miz-contact-card h2{
  margin: 18px 0 0;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.miz-contact-card p{
  color: var(--miz-text-soft);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.68;
}


/* Bei :hover irgendeiner Karte: Connector-Line voll aufleuchten */


/* Connector-Linie zwischen Karten (Desktop: horizontal, Mobile: vertikal) */


/* Wenn Timeline in View kommt (data-reveal is-visible auf den Articles) */


/* Sibling-Dim: bei Hover auf eine Karte dimmen die anderen leicht */


/* Connector-Node: kleiner Punkt rechts oben pro Card, leuchtet aufeinander */


/* Staggered Reveal per Position */


/* Pro Schritt eine eigene Mikro-Animation am Icon — erzählt was im Schritt passiert */


/* 01 Verstehen — Lupe pulsiert (Scanning-Geste) */


/* 02 Sortieren — Schieberegler wackeln links/rechts */


/* 03 Umsetzen — Layout-Blöcke stapeln sich auf */


/* 04 Aktuell halten — Refresh-Icon dreht sich kontinuierlich */


/* Reduced-Motion: Animationen aus */

@media (prefers-reduced-motion: reduce) {
  .miz-timeline article:hover .miz-timeline-visual i,
  .miz-timeline article:hover span {
    animation: none;
    transform: none;
  }
}


/* ─────────────────────────────────────────────────────────
   PREMIUM FLOW — Ablauf-Section Apple/Stripe/Linear-Niveau
   ───────────────────────────────────────────────────────── */


@property --miz-flow-rot {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}
.miz-flow{
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 2.4vw, 32px);
  isolation: isolate;
  perspective: 1400px;
  padding-top: 28px;
  max-width: 760px;
  margin: 0 auto;
}


/* SVG Connector — Wellenlinie zwischen den Cards die sich aufmalt */
.miz-flow-connector{
  position: absolute;
  top: 92px;
  left: 0;
  right: 0;
  width: 100%;
  height: 80px;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity .8s var(--miz-ease);
}
.miz-flow-line{
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  transition: stroke-dashoffset 2.4s cubic-bezier(.4, 0, .2, 1);
}


/* Orb läuft auf der Linie entlang — kontinuierlich animiert */

@keyframes miz-flow-orb-glide {
  0%   { offset-distance: 0%;   opacity: 0;   r: 4; }
  10%  {                         opacity: 1; }
  90%  {                         opacity: 1; }
  100% { offset-distance: 100%; opacity: 0;   r: 4; }
}
.miz-flow-orb{
  offset-path: path("M 80 40 Q 300 8 450 40 T 800 40 T 1120 40");
  offset-distance: 0%;
  opacity: 0;
}
.miz-flow.is-active .miz-flow-connector{
  opacity: 1;
}
.miz-flow.is-active .miz-flow-line{
  stroke-dashoffset: 0;
}
.miz-flow.is-active .miz-flow-orb{
  animation: miz-flow-orb-glide 4.2s ease-in-out 2s infinite;
  animation-play-state: paused;
}


/* PERF: Orb läuft NUR wenn Section sichtbar ist (IntersectionObserver toggelt is-in-view) */
.miz-flow.is-active.is-in-view .miz-flow-orb{
  animation-play-state: running;
}


/* ── Karten ── */
.miz-flow-step{
  position: relative;
  padding: 32px 28px 30px;
  border-radius: 26px;
  /* PERF: isoliert Paint/Layout/Style — Hover-Effekte triggern kein globales Reflow */
  contain: layout style paint;
  background:
    linear-gradient(160deg, rgba(15, 28, 50, .82) 0%, rgba(7, 18, 36, .92) 100%);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, .06);
  box-shadow:
    0 26px 60px rgba(0, 0, 0, .42),
    inset 0 1px 0 rgba(255, 255, 255, .08),
    inset 0 -1px 0 rgba(10, 132, 255, .06);
  isolation: isolate;
  overflow: hidden;
  cursor: default;
  transform-style: preserve-3d;
  transform: translateZ(0);
  transition:
    transform .55s cubic-bezier(.2, .9, .3, 1.2),
    box-shadow .55s var(--miz-ease),
    background .55s var(--miz-ease),
    border-color .55s var(--miz-ease),
    opacity .45s var(--miz-ease),
    filter .45s var(--miz-ease);
}


/* Rotierende Conic-Glow-Border bei Hover */
.miz-flow-step::before{
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 26px;
  padding: 1px;
  background: conic-gradient(
    from var(--miz-flow-rot),
    transparent 0%,
    rgba(10, 132, 255, .65) 12%,
    rgba(50, 211, 239, .45) 22%,
    transparent 35%
  );
  -webkit-mask:
    linear-gradient(#000, #000) content-box,
    linear-gradient(#000, #000);
  mask:
    linear-gradient(#000, #000) content-box,
    linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: opacity .5s var(--miz-ease);
}


@keyframes miz-flow-conic-spin {
  to { --miz-flow-rot: 360deg; }
}
.miz-flow-step:hover::before{
  opacity: 1;
  animation: miz-flow-conic-spin 4s linear infinite;
}


/* Cursor-Spotlight folgt der Maus innerhalb der Card */
.miz-flow-spotlight{
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    480px circle at var(--mx, 50%) var(--my, 50%),
    rgba(10, 132, 255, .26),
    rgba(50, 211, 239, .08) 35%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity .35s var(--miz-ease);
}
.miz-flow-step:hover .miz-flow-spotlight{
  opacity: 1;
}


/* Inhalts-Schicht über Spotlight + Conic */
.miz-flow-step > :not(.miz-flow-spotlight){
  position: relative;
  z-index: 1;
}


/* Massive Premium-Number mit Gradient + Glow */
.miz-flow-num{
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--miz-font);
  font-size: clamp(56px, 6vw, 78px);
  font-weight: 950;
  letter-spacing: -.05em;
  line-height: 1;
  background: linear-gradient(135deg, #0a84ff 0%, #32d3ef 70%, #b9d8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 12px 32px rgba(10, 132, 255, .35));
  opacity: .22;
  transition:
    transform .6s cubic-bezier(.2, .9, .3, 1.2),
    opacity .6s var(--miz-ease),
    filter .6s var(--miz-ease);
  pointer-events: none;
  z-index: 1;
}
.miz-flow-step:hover .miz-flow-num{
  transform: translateY(-6px) translateZ(40px) scale(1.08);
  opacity: 1;
  filter: drop-shadow(0 18px 44px rgba(10, 132, 255, .72));
}


/* Icon-Card mit Premium Tile-Optik */
.miz-flow-icon{
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a84ff 0%, #1aa7ff 100%);
  box-shadow:
    0 18px 38px rgba(10, 132, 255, .42),
    inset 0 1px 0 rgba(255, 255, 255, .35),
    inset 0 -1px 0 rgba(0, 0, 0, .14);
  margin-bottom: 18px;
  transition:
    transform .5s cubic-bezier(.2, .9, .3, 1.2),
    box-shadow .5s var(--miz-ease);
}
.miz-flow-icon i{
  font-size: 26px;
  color: #fff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .22));
  transition: transform .5s var(--miz-ease);
}
.miz-flow-step:hover .miz-flow-icon{
  transform: translateY(-4px) translateZ(30px) rotate(-6deg) scale(1.06);
  box-shadow:
    0 26px 56px rgba(10, 132, 255, .6),
    0 0 0 6px rgba(10, 132, 255, .14),
    inset 0 1px 0 rgba(255, 255, 255, .4);
}


/* Pro-Schritt-Mikroanimation am Icon (immer subtil aktiv) */

@keyframes miz-flow-pulse-search {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.14) rotate(-4deg); }
}

@keyframes miz-flow-pulse-sort {
  0%, 100% { transform: translateX(0); }
  25%      { transform: translateX(-2px); }
  75%      { transform: translateX(2px); }
}

@keyframes miz-flow-pulse-build {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.18); filter: drop-shadow(0 4px 12px rgba(255,255,255,.4)); }
}

@keyframes miz-flow-pulse-sync {
  to { transform: rotate(360deg); }
}
.miz-flow-step[data-step="1"]:hover .miz-flow-icon i{ animation: miz-flow-pulse-search 1.6s ease-in-out infinite; }
.miz-flow-step[data-step="2"]:hover .miz-flow-icon i{ animation: miz-flow-pulse-sort 1.3s ease-in-out infinite; }
.miz-flow-step[data-step="3"]:hover .miz-flow-icon i{ animation: miz-flow-pulse-build 1.8s ease-in-out infinite; }
.miz-flow-step[data-step="4"]:hover .miz-flow-icon i{ animation: miz-flow-pulse-sync 2.4s linear infinite; transform-origin: 50% 50%; }
.miz-flow-kicker{
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(185, 216, 255, .96);
  background: linear-gradient(135deg, rgba(10, 132, 255, .22), rgba(10, 132, 255, .06));
  border: 1px solid rgba(10, 132, 255, .32);
  backdrop-filter: blur(6px);
  transition:
    transform .4s var(--miz-ease),
    background .4s var(--miz-ease),
    color .4s var(--miz-ease);
}
.miz-flow-step:hover .miz-flow-kicker{
  transform: translateZ(20px);
  color: #fff;
  background: linear-gradient(135deg, var(--miz-blue), var(--miz-blue-2));
  border-color: rgba(10, 132, 255, .8);
}
.miz-flow-step h3{
  margin: 4px 0 14px;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: 1.1;
  color: #fff;
  transition: transform .5s var(--miz-ease);
}
.miz-flow-step:hover h3{
  transform: translateZ(15px);
}
.miz-flow-step p{
  margin: 0;
  color: rgba(207, 222, 240, .82);
  font-size: 15px;
  line-height: 1.62;
  transition: color .4s var(--miz-ease);
}
.miz-flow-step:hover p{
  color: rgba(232, 240, 248, .94);
}


/* Detail-Drawer — slidet von unten rein bei Hover */
.miz-flow-detail{
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  border-top: 1px solid transparent;
  transition:
    max-height .6s cubic-bezier(.2, .9, .3, 1.05),
    opacity .5s var(--miz-ease),
    margin-top .6s var(--miz-ease),
    padding-top .6s var(--miz-ease),
    border-color .6s var(--miz-ease);
}
.miz-flow-step:hover .miz-flow-detail{
  max-height: 240px;
  opacity: 1;
  margin-top: 18px;
  padding-top: 16px;
  border-top-color: rgba(10, 132, 255, .22);
}
.miz-flow-detail-label{
  display: block;
  margin-bottom: 10px;
  color: rgba(50, 211, 239, .92);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.miz-flow-detail ul{
  margin: 0;
  padding: 0;
  list-style: none;
}
.miz-flow-detail li{
  position: relative;
  padding: 5px 0 5px 22px;
  color: rgba(220, 232, 246, .9);
  font-size: 13.5px;
  line-height: 1.5;
  opacity: 0;
  transform: translateX(-8px);
  transition:
    opacity .35s var(--miz-ease),
    transform .35s var(--miz-ease);
}
.miz-flow-step:hover .miz-flow-detail li{
  opacity: 1;
  transform: translateX(0);
}
.miz-flow-step:hover .miz-flow-detail li:nth-child(1){ transition-delay: .12s; }
.miz-flow-step:hover .miz-flow-detail li:nth-child(2){ transition-delay: .22s; }
.miz-flow-step:hover .miz-flow-detail li:nth-child(3){ transition-delay: .32s; }
.miz-flow-detail li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 12px;
  height: 2px;
  background: linear-gradient(90deg, var(--miz-blue), var(--miz-blue-2));
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(10, 132, 255, .5);
}


/* Lift + Glow beim Hover */
.miz-flow-step:hover{
  transform: translateY(-10px) translateZ(0) scale(1.015);
  background:
    linear-gradient(160deg, rgba(20, 38, 64, .92) 0%, rgba(9, 22, 42, .96) 100%);
  border-color: rgba(10, 132, 255, .25);
  box-shadow:
    0 44px 88px rgba(0, 0, 0, .5),
    0 0 88px rgba(10, 132, 255, .22),
    0 0 0 1px rgba(10, 132, 255, .14),
    inset 0 1px 0 rgba(255, 255, 255, .14);
}


/* Sibling-Dim via :has() — nur die gehoverte Card bleibt voll */
.miz-flow:has(.miz-flow-step:hover) .miz-flow-step:not(:hover){
  opacity: .42;
  filter: saturate(.6) blur(.3px);
  transform: scale(.97);
}


/* Auto-Sequence-Play wenn Section in View */

@keyframes miz-flow-step-glow-in {
  0%   { box-shadow: 0 26px 60px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .08); }
  50%  { box-shadow: 0 26px 60px rgba(0, 0, 0, .42), 0 0 80px rgba(10, 132, 255, .55), inset 0 1px 0 rgba(255, 255, 255, .14); }
  100% { box-shadow: 0 26px 60px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .08); }
}
.miz-flow.is-active .miz-flow-step{
  animation: miz-flow-step-glow-in 1.4s ease-in-out 1 both;
}
.miz-flow.is-active .miz-flow-step[data-step="1"]{ animation-delay: .15s; }
.miz-flow.is-active .miz-flow-step[data-step="2"]{ animation-delay: .9s; }
.miz-flow.is-active .miz-flow-step[data-step="3"]{ animation-delay: 1.65s; }
.miz-flow.is-active .miz-flow-step[data-step="4"]{ animation-delay: 2.4s; }


/* ── Mobile Tablet ── */

@media (max-width: 1024px) {
  .miz-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .miz-flow-connector {
    display: none;
  }
}


@media (max-width: 640px) {
  .miz-flow {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .miz-flow-num {
    font-size: 64px;
  }
}


@media (prefers-reduced-motion: reduce) {
  .miz-flow-step,
  .miz-flow-step *,
  .miz-flow-orb,
  .miz-flow-line {
    animation: none !important;
    transition: opacity .3s, max-height .3s !important;
  }
  .miz-flow-step:hover {
    transform: none;
  }
}
.miz-section-contact{
  padding-bottom: 130px;
  background:
    radial-gradient(circle at 20% 0%, rgba(37, 211, 102, .10), transparent 26%),
    radial-gradient(circle at 82% 10%, rgba(10, 132, 255, .13), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #eef4fa 58%, #e9f0f8 100%);
}
.miz-faq-lead{
  position: relative;
  overflow: hidden;
  margin: -22px 0 24px;
  padding: 22px 24px;
  border-radius: var(--miz-radius);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .15);
  background:
    radial-gradient(circle at 6% 0%, rgba(37, 211, 102, .16), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .045)),
    rgba(7, 19, 37, .72);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, .26),
    inset 0 1px 0 rgba(255, 255, 255, .10);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}
.miz-faq-lead strong,
.miz-faq-lead span{
  display: block;
}
.miz-faq-lead strong{
  font-size: clamp(21px, 2.2vw, 30px);
  line-height: 1.16;
  letter-spacing: -.025em;
}
.miz-faq-lead span{
  max-width: 820px;
  margin-top: 8px;
  color: rgba(247, 251, 255, .78);
  line-height: 1.62;
  font-weight: 720;
}
.miz-faq-item{
  position: relative;
  overflow: hidden;
  padding: 0;
  border-radius: var(--miz-radius);
  border: 1px solid rgba(255, 255, 255, .13);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, .22),
    inset 0 1px 0 rgba(255, 255, 255, .09);
  transition: transform .24s var(--miz-ease), border-color .24s var(--miz-ease), box-shadow .24s var(--miz-ease);
}
.miz-faq-item:hover,
.miz-faq-item[open]{
  border-color: rgba(10, 132, 255, .28);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, .26),
    0 0 34px rgba(10, 132, 255, .10),
    inset 0 1px 0 rgba(255, 255, 255, .12);
}
.miz-faq-item summary{
  min-height: 88px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  align-items: center;
  gap: 16px;
  padding: 24px var(--miz-card-pad);
  color: #fff;
  cursor: pointer;
  list-style: none;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -.025em;
}
.miz-faq-item summary::-webkit-details-marker{
  display: none;
}
.miz-faq-item summary::after{
  content: "+";
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #b9d8ff;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .07);
  transition: transform .24s var(--miz-ease), background .24s var(--miz-ease);
}
.miz-faq-item[open] summary::after{
  transform: rotate(45deg);
  background: rgba(10, 132, 255, .18);
}
.miz-faq-item p{
  margin: 0;
  padding: 0 var(--miz-card-pad) 26px;
  color: var(--miz-muted);
  font-size: 16px;
  line-height: 1.72;
}
.miz-faq-actions{
  justify-content: center;
}


/* ═══════════════════════════════════════════════════════
   FOOTER (premium – matches live mizoffice.de)
═══════════════════════════════════════════════════════ */
.miz-footer{
  position: relative;
  color: #f7fbff;
  background:
    radial-gradient(circle at 16% 0%, rgba(10, 132, 255, .18), transparent 32%),
    radial-gradient(circle at 84% 100%, rgba(10, 132, 255, .08), transparent 28%),
    linear-gradient(180deg, #071325 0%, #020813 100%);
  border-top: 1px solid rgba(255, 255, 255, .08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
}


/* Premium Top-Accent: Brand-Gradient-Linie am Footer-Oberrand */
.miz-footer::before{
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--miz-content-wide), calc(100% - 48px));
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(10, 132, 255, .6), rgba(50, 211, 239, .5), transparent);
  border-radius: 999px;
}
.miz-footer-inner{
  width: min(var(--miz-content-wide), calc(100% - 48px));
  margin: 0 auto;
}
.miz-footer-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.miz-footer-logo-link img{
  width: 162px;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(255, 255, 255, .09));
  transition: opacity .2s;
}
.miz-footer-logo-link:hover img{
  opacity: .82;
}
.miz-footer-claim{
  max-width: 520px;
  margin: 0;
  color: rgba(247, 251, 255, .72);
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 750;
  line-height: 1.65;
  text-align: right;
}
.miz-footer-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(20px, 2.4vw, 36px);
  padding: 40px 0;
}
.miz-footer-grid--premium{
  grid-template-columns: 1.1fr 1.15fr 1.1fr 1fr 1.12fr;
}
.miz-footer-col{
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.miz-footer-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(247, 251, 255, .62);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}


/* Brand-Akzent-Dot vor jedem Footer-Spalten-Titel */
.miz-footer-badge::before{
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--miz-blue), var(--miz-blue-2));
  box-shadow: 0 0 8px rgba(10, 132, 255, .5);
  flex-shrink: 0;
}
.miz-footer-list{
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.miz-footer-list a{
  color: rgba(247, 251, 255, .68);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.4;
  transition: color .18s var(--miz-ease), transform .18s var(--miz-ease);
  display: inline-block;
}
.miz-footer-list a:hover{
  color: #fff;
  transform: translateX(3px);
}
.miz-footer-card--brand{
  background:
    radial-gradient(circle at 0% 0%, rgba(10, 132, 255, .22), transparent 48%),
    radial-gradient(circle at 100% 100%, rgba(50, 211, 239, .10), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .04));
}
.miz-footer-bottom{
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.miz-footer-bottom p{
  margin: 0;
  font-size: 13px;
  font-weight: 750;
  color: rgba(247, 251, 255, .38);
  letter-spacing: .02em;
}
.miz-footer-socials-inline{
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin: 0;
  padding: 0;
}
.miz-footer-socials-inline a{
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border-radius: 12px;
  color: rgba(247, 251, 255, .78);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .09);
  font-size: 13px;
  font-weight: 850;
  transition: background .18s var(--miz-ease), border-color .18s var(--miz-ease), color .18s var(--miz-ease), transform .18s var(--miz-ease);
}
.miz-footer-socials-inline a:hover{
  color: #fff;
  background: rgba(10, 132, 255, .18);
  border-color: rgba(10, 132, 255, .32);
  transform: translateY(-2px);
}
.miz-footer-socials-inline i{
  color: #9ed0ff;
  font-size: 17px;
}
.miz-contact-card{
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(22px, 3vw, 38px);
  align-items: start;
  padding: clamp(24px, 4vw, 48px);
  border-radius: var(--miz-radius-lg);
  border: var(--miz-card-border-light);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(245, 248, 252, .96)),
    rgba(255, 255, 255, .88);
  box-shadow:
    0 28px 82px rgba(7, 19, 37, .13),
    0 10px 28px rgba(7, 19, 37, .06),
    inset 0 1px 0 rgba(255, 255, 255, .92);
}
.miz-contact-card > *,
.miz-contact-form,
.miz-contact-form fieldset,
.miz-contact-form label,
.miz-contact-form input,
.miz-contact-form textarea{
  min-width: 0;
}
.miz-contact-card::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 211, 102, .10), transparent 28%),
    radial-gradient(circle at 88% 4%, rgba(10, 132, 255, .14), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, .28), transparent 42%);
}
.miz-contact-card > *{
  position: relative;
  z-index: 1;
}
.miz-section-contact .miz-contact-card p{
  color: var(--miz-text-soft);
}
.miz-contact-points{
  display: grid;
  gap: 10px;
  margin-top: 24px;
}
.miz-contact-points span{
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--miz-text);
  font-weight: 850;
}
.miz-contact-points i{
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #081322;
  background: var(--miz-green);
  box-shadow: 0 0 18px rgba(37, 211, 102, .28);
}
.miz-contact-form{
  display: grid;
  gap: 16px;
  padding: calc(var(--miz-card-pad) - 10px);
  border-radius: var(--miz-radius);
  border: var(--miz-card-border-light);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(247, 250, 253, .92));
  box-shadow:
    0 18px 44px rgba(7, 19, 37, .09),
    inset 0 1px 0 rgba(255, 255, 255, .96);
}
.miz-contact-form fieldset{
  border: 0;
}
.miz-contact-form input:not([type="checkbox"]):not([type="hidden"]):not([type="radio"]),
.miz-contact-form textarea{
  width: 100%;
  border: 1px solid rgba(10, 28, 48, .12);
  border-radius: 18px;
  padding: 15px 16px 15px 46px;
  color: var(--miz-text);
  background: rgba(255, 255, 255, .86);
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .92),
    0 3px 10px rgba(7, 19, 37, .035);
  transition: border-color .2s var(--miz-ease), box-shadow .2s var(--miz-ease), background .2s var(--miz-ease);
}
.miz-contact-form textarea{
  resize: vertical;
  min-height: 142px;
}
.miz-contact-form input:not([type="checkbox"]):not([type="hidden"]):not([type="radio"])::placeholder,
.miz-contact-form textarea::placeholder{
  color: rgba(75, 90, 110, .62);
}
.miz-contact-form input:not([type="checkbox"]):not([type="hidden"]):not([type="radio"]):focus,
.miz-contact-form textarea:focus{
  border-color: rgba(10, 132, 255, .55);
  background: #fff;
  box-shadow:
    0 0 0 5px rgba(10, 132, 255, .10),
    0 12px 28px rgba(10, 132, 255, .08),
    inset 0 1px 0 rgba(255, 255, 255, .96);
}
.miz-honeypot{
  position: fixed;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  contain: size layout paint;
  font-size: 0;
}
.miz-honeypot input{
  width: 1px !important;
  min-width: 0 !important;
  height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}
.miz-form-actions .miz-btn{
  flex: 1 1 180px;
}


@media (max-width: 1120px) {
  .miz-nav {
    grid-template-columns: 1fr auto auto;
  }

  .miz-nav-links {
    display: none;
  }

  .miz-nav-toggle {
    display: inline-flex;
  }
}


@media (max-width: 980px) {

  .miz-hero-grid,
  .miz-founder,
  .miz-contact-card {
    grid-template-columns: 1fr;
  }

  .miz-founder-image {
    width: min(100%, 360px);
  }

  .miz-card-grid-3,
  .miz-service-grid {
    grid-template-columns: 1fr;
  }

  .miz-timeline,
  .miz-proof-grid,
  .miz-hero-category-nav {
    grid-template-columns: 1fr 1fr;
  }

  /* Connector-Line und Nodes nur auf Desktop (4-Spalten-Layout) */
  .miz-timeline::before,
  .miz-timeline article::after {
    display: none;
  }

  .miz-section-cta {
    grid-template-columns: 1fr;
  }

  .miz-section-cta .miz-actions {
    justify-content: flex-start;
  }

  .miz-addon-band {
    grid-template-columns: 1fr;
  }

  .miz-addon-band > .miz-btn {
    justify-self: start;
  }

  .miz-topic-field {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}



/* ===== FOOTER BASIS-SCHICHT (wiederhergestellt) =====
   Cleanup hatte die Basis-Regeln entfernt, nur Media-Overrides blieben
   → premium-grid war display:block statt grid. ===== */
.miz-footer-premium-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 18px 0;
}
.miz-footer-card {
  min-width: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  border-radius: 18px;
  color: rgba(247, 251, 255, .84);
  background:
    radial-gradient(circle at 14% 0%, rgba(10, 132, 255, .12), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .035));
  border: 1px solid rgba(255, 255, 255, .09);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .075),
    0 18px 44px rgba(0, 0, 0, .14);
}
.miz-footer-card h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(20px, 1.75vw, 26px);
  line-height: 1.12;
  letter-spacing: 0;
}
.miz-footer-card p {
  margin: 0;
  color: rgba(247, 251, 255, .66);
  font-size: 13.2px;
  font-weight: 690;
  line-height: 1.54;
}
.miz-footer-primary {
  width: fit-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding: 0 15px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #0a84ff, #0066ff);
  border: 1px solid rgba(158, 208, 255, .32);
  box-shadow:
    0 18px 42px rgba(10, 132, 255, .22),
    inset 0 1px 0 rgba(255, 255, 255, .20);
  font-size: 13.5px;
  font-weight: 900;
}
.miz-footer-primary:hover {
  color: #fff;
  transform: translateY(-2px);
}
.miz-footer-menu {
  list-style: none;
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
}
.miz-footer-menu a {
  min-height: 30px;
  display: flex;
  align-items: center;
  padding: 0 11px;
  border-radius: 11px;
  color: rgba(247, 251, 255, .74);
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .055);
  font-size: 13px;
  font-weight: 790;
}
.miz-footer-menu a:hover {
  color: #fff;
  background: rgba(10, 132, 255, .15);
  border-color: rgba(10, 132, 255, .24);
}
.miz-footer-legalbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, .075);
}
.miz-footer-legalbar p {
  margin: 0;
  color: rgba(247, 251, 255, .42);
  font-size: 13px;
  font-weight: 750;
}
.miz-footer-legalbar nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 9px 14px;
}
.miz-footer-legalbar a,
.miz-footer-legalbar button {
  color: rgba(247, 251, 255, .58);
  font-size: 13px;
  font-weight: 780;
}
.miz-footer-legalbar a:hover,
.miz-footer-legalbar button:hover {
  color: #fff;
  transform: none;
}
.miz-footer-premium-grid {
  align-items: stretch;
}
.miz-footer-card {
  min-width: 0;
}
.miz-footer-card p {
  max-width: 42ch;
}
.miz-footer-card :where(a, button, span, p, li) {
  overflow-wrap: anywhere;
}
/* ===== /FOOTER BASIS-SCHICHT ===== */


@media (max-width: 680px) {
  .miz-nav {
    width: min(100% - 24px, 1240px);
    border-radius: 22px;
    gap: 10px;
  }

  .miz-brand img {
    width: 142px;
    height: 36px;
  }

  .miz-nav-cta {
    display: none;
    min-height: 42px;
    padding: 0 14px;
    font-size: 14px;
  }

  .miz-nav-toggle {
    width: 42px;
    height: 42px;
  }

  .miz-mobile-menu {
    grid-template-columns: 1fr;
  }

  .miz-footer-top,
  .miz-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
  }

  .miz-footer-claim {
    max-width: 100%;
    text-align: left;
  }

  .miz-footer-socials-inline {
    justify-content: flex-start;
  }

  .miz-footer-focus {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .miz-footer-utility {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .miz-footer-legalline {
    justify-content: flex-start;
  }

  .miz-footer-premium-grid {
    grid-template-columns: 1fr 1fr;
  }

  .miz-footer-card--brand {
    grid-column: 1 / -1;
  }

  .miz-footer-legalbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .miz-footer-legalbar nav {
    justify-content: flex-start;
  }

  .miz-contact-direct {
    display: grid;
    grid-template-columns: 1fr;
  }

  .miz-contact-direct a {
    width: 100%;
  }

  .miz-topic-field {
    grid-template-columns: 1fr 1fr;
    padding: 10px;
  }

  .miz-topic-field span {
    min-height: 42px;
    padding: 0 8px;
    font-size: 12px;
  }

  .miz-founder-image {
    width: min(100%, 310px);
    padding: 9px;
  }

  .miz-founder-status {
    bottom: 15px;
    min-height: 34px;
    padding: 0 12px;
    font-size: 10px;
  }

  .miz-founder-image::after {
    right: 32px;
    bottom: 38px;
    width: 20px;
    height: 20px;
  }

  .miz-hero {
    min-height: 0;
    padding: 104px 0 68px;
  }

  .miz-hero-bg {
    background:
      linear-gradient(180deg, rgba(248, 251, 255, .96) 0%, rgba(248, 251, 255, .84) 42%, rgba(248, 251, 255, .96) 100%),
      radial-gradient(circle at 16% 12%, rgba(10, 132, 255, .16), transparent 28%),
      url("./images/Homeinto1.webp");
    background-size: cover;
    background-position: 58% 50%;
  }

  .miz-hero-copy h1 {
    font-size: clamp(37px, 11vw, 50px);
    line-height: .94;
    letter-spacing: -.038em;
  }

  .miz-hero-copy p {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.58;
  }

  .miz-hero-proof {
    grid-template-columns: 1fr;
    margin-top: 18px;
    gap: 8px;
  }

  .miz-hero-category-nav {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .miz-hero-proof span {
    min-height: 40px;
    padding: 0 14px;
    border-radius: 15px;
    font-size: 13px;
  }

  .miz-hero-panel {
    min-height: 0;
    margin-top: 4px;
  }

  .miz-hero-visual,
  .miz-hero-visual > img {
    min-height: 300px;
  }

  .miz-hero-brandmark--laptop {
    left: 7%;
    top: 10%;
    width: 126px;
    height: 44px;
    padding: 8px 11px;
    border-radius: 15px;
  }

  .miz-hero-system {
    grid-template-columns: 1fr;
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .miz-system-node {
    min-height: 48px;
    border-radius: 18px;
  }

  .miz-system-node--wide {
    padding-left: 0;
    justify-content: center;
  }

  .miz-info-card {
    min-height: 0;
  }

  .miz-info-media {
    height: 300px;
  }

  .miz-scenario {
    inset: 14px 12px 86px;
  }

  .miz-scenario-phone {
    left: 4%;
    width: 42%;
    min-width: 118px;
    max-height: 192px;
    border-radius: 24px;
  }

  .miz-phone-screen strong {
    font-size: 54px;
  }

  .miz-scenario-panel {
    right: 3%;
    width: 49%;
    padding: 13px;
    border-radius: 18px;
  }

  .miz-scenario-panel strong {
    font-size: 15.5px;
  }

  .miz-search-card {
    left: 3%;
    right: 3%;
    min-height: 66px;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 9px;
    padding: 10px;
    border-radius: 18px;
  }

  .miz-search-card > span {
    width: 30px;
    height: 30px;
  }

  .miz-search-card strong {
    font-size: 14.5px;
  }

  .miz-search-card small {
    font-size: 10.8px;
  }

  .miz-map-grid {
    right: 6%;
    bottom: 0;
  }

  .miz-map-grid i {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    font-size: 16px;
  }

  .miz-channel {
    width: 76px;
    min-height: 84px;
    border-radius: 20px;
  }

  .miz-channel i {
    width: 30px;
    height: 30px;
    border-radius: 11px;
    font-size: 16px;
  }

  .miz-channel span,
  .miz-request-card span {
    font-size: 11px;
  }

  .miz-request-card {
    width: min(86%, 246px);
    min-height: 70px;
    border-radius: 19px;
  }

  .miz-info-media img {
    width: 100%;
    height: 100%;
  }

  .miz-image-signal {
    left: 12px;
    top: 12px;
    min-height: 38px;
    max-width: calc(100% - 24px);
    padding: 0 12px;
    font-size: 12px;
  }

  .miz-image-message {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 13px 14px;
    border-radius: 16px;
  }

  .miz-image-message strong {
    font-size: 13.5px;
  }

  .miz-image-message span {
    font-size: 11.8px;
  }

  .miz-service-region {
    left: 12px;
    top: 12px;
    min-height: 31px;
    padding: 0 10px;
    font-size: 11px;
  }

  .miz-service-message {
    left: 12px;
    right: 12px;
    bottom: 12px;
    min-height: 36px;
    padding: 0 11px;
    border-radius: 14px;
    font-size: 11.5px;
  }

  .miz-service-explain {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 5px;
    margin: -12px 0 18px;
    padding: 10px 12px;
    border-radius: 16px;
  }

  .miz-service-explain i {
    width: 24px;
    height: 24px;
    transform: rotate(90deg);
    font-size: 14px;
  }

  .miz-service-explain span,
  .miz-service-explain strong {
    font-size: 11.5px;
  }

  .miz-info-body {
    padding: 22px 20px 24px;
    min-height: 0;
  }

  .miz-problem-bridge {
    padding: 20px;
    border-radius: 22px;
  }

  .miz-problem-bridge span {
    font-size: 15px;
  }

  .miz-section-cta {
    padding: 20px;
    border-radius: 22px;
  }

  .miz-section-cta .miz-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .miz-addon-band {
    padding: 18px;
    border-radius: 22px;
  }

  .miz-addon-band__visual {
    min-height: 146px;
  }

  .miz-addon-band__visual span {
    min-height: 58px;
  }

  .miz-tool-cards,
  .miz-card-grid,
  .miz-service-grid,
  .miz-outcome-row,
  .miz-faq-grid,
  .miz-form-grid,
  .miz-timeline,
  .miz-proof-grid {
    grid-template-columns: 1fr;
  }

  .miz-footer-lite__inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .miz-footer-lite__links,
  .miz-footer-lite__contact {
    justify-content: flex-start;
  }

  .miz-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .miz-footer-grid--simple {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}


@media (max-width: 540px) {
  .miz-footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .miz-footer-grid--simple {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px 0;
  }

  .miz-footer-panel {
    padding: 14px;
    border-radius: 16px;
  }

  .miz-footer-panel:not([open]) {
    background: rgba(255, 255, 255, .035);
  }

  .miz-footer-list {
    gap: 9px;
  }

  .miz-footer-focus {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 22px 0 16px;
  }

  .miz-footer-focus a {
    min-height: 50px;
    justify-content: flex-start;
    padding: 0 11px;
    border-radius: 15px;
    font-size: 12.8px;
  }

  .miz-footer-focus i {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    font-size: 16px;
  }

  .miz-footer-focus__cta {
    grid-column: 1 / -1;
    justify-content: center !important;
  }

  .miz-footer-utility {
    padding: 16px 0 20px;
  }

  .miz-footer-premium-grid {
    grid-template-columns: 1fr;
    padding: 22px 0;
  }

  .miz-footer-card {
    padding: 17px;
    border-radius: 18px;
  }

  .miz-footer-menu--split {
    grid-template-columns: 1fr;
  }

  .miz-footer-primary {
    width: 100%;
    justify-content: center;
  }

  .miz-footer-socials-inline--card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .miz-footer-socials-inline--card a {
    justify-content: center;
  }

  .miz-footer-contactline,
  .miz-footer-legalline {
    gap: 8px 11px;
  }

  .miz-footer-top {
    padding: 28px 0 22px;
  }

  .miz-footer-logo-link img {
    width: 148px;
  }
}


/* ─────────────────────────────────────────────────────────
   PERFORMANCE — GPU-Hints, Off-Screen-Skipping
   ───────────────────────────────────────────────────────── */


/* Sektionen die weit unten liegen profitieren von content-visibility:
   Browser kann Off-Screen-Sections vom Rendering-Pfad ausschließen */
.miz-section-faq,
.miz-section-contact{
  content-visibility: auto;
  contain-intrinsic-size: 1px 800px; /* Reserviert Platz damit Scrollbar stabil bleibt */
}


/* Hover-only Animationen brauchen will-change NUR während Hover, nicht permanent.
   landing.js setzt will-change on mouseenter, removed on mouseleave (siehe Section 10) */


/* Faq/Section-Cards: containen für isolierten Paint */
.miz-faq-item,
.miz-service-card{
  contain: layout style;
}


/* GPU-Layer für persistent animated Elemente */
.miz-scroll-progress{
  will-change: transform;
}


/* Hero-Visual: GPU-Hint nur solange Tilt aktiv (Class via JS) */
.miz-hero-panel[data-tilt-card]{
  will-change: transform;
}


/* ─────────────────────────────────────────────────────────
   SECTION-RHYTHMUS — konsistente Padding, weiche Übergänge
   ───────────────────────────────────────────────────────── */


/* Padding-Vereinheitlichung: alle .miz-section bekommen denselben Rhythmus */
.miz-section{
  padding-top: clamp(80px, 9vw, 124px);
  padding-bottom: clamp(80px, 9vw, 124px);
}


/* Hero: mehr Atem zum Header (Header-Höhe ~72px + 48px Atemraum) */
.miz-hero{
  padding-top: clamp(112px, 10vw, 140px);
  padding-bottom: clamp(72px, 7vw, 96px);
}


/* Weiche Section-Übergänge mit Pseudo-Element-Gradients
   — verhindert harten Schnitt zwischen hell/dunkel */
.miz-section + .miz-section,
.miz-hero + .miz-section{
  position: relative;
}


/* Übergang dunkel → hell: subtiler Fade-In am Top */
.miz-section-light::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(180deg, rgba(2, 8, 19, .04) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}


/* Übergang hell → dunkel: subtiles Auslaufen am Bottom der hellen Section */
.miz-section-light:not(:last-child)::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, transparent 0%, rgba(2, 8, 19, .06) 100%);
  pointer-events: none;
  z-index: 0;
}


/* Vertrauen-Section: mehr "Atem" — bekommt subtilen Side-Gradient */
#vertrauen{
  background:
    radial-gradient(circle at 88% 22%, rgba(10, 132, 255, .10), transparent 42%),
    radial-gradient(circle at 8% 78%, rgba(50, 211, 239, .07), transparent 38%),
    linear-gradient(180deg, #f5f9fd 0%, #eef4fa 100%);
}


/* Kontakt-Section: grünen Akzent durch subtiles Brand-Blau ersetzen
   für konsistente Linie (kleine Grün-Spur bleibt für "Go/Send"-Signal) */
.miz-section-contact{
  background:
    radial-gradient(circle at 18% 0%, rgba(10, 132, 255, .12), transparent 30%),
    radial-gradient(circle at 84% 14%, rgba(50, 211, 239, .10), transparent 32%),
    radial-gradient(circle at 95% 95%, rgba(37, 211, 102, .06), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #eef4fa 58%, #e9f0f8 100%);
}


/* Z-Index für Section-Inhalte über den Übergangs-Pseudos */
.miz-section > *{
  position: relative;
  z-index: 1;
}


/* ─────────────────────────────────────────────────────────
   FOUNDER-SECTION (#vertrauen) — Premium Trust-Layout
   ───────────────────────────────────────────────────────── */
#vertrauen{
  isolation: isolate;
}


/* Floating Trust-Badges am Founder-Image */


/* Location-Badge — links oben, schwebend */


/* Lead-Paragraph etwas größer & dunkler */


/* Quote mit cite-Element */


/* Promise-Liste mit Icons */


/* Stats-Bar — 4 Mini-Stats in Reihe */


/* Aktionen — 3 Buttons inkl. WhatsApp + Mail */


/* Mobile */

@media (max-width: 900px) {
  .miz-founder-promise ul {
    grid-template-columns: 1fr;
  }
  .miz-founder-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .miz-founder-stats > div {
    border-right: none;
    padding-right: 0;
  }
  .miz-founder-badge--location {
    left: 12px;
    top: 12px;
  }
  .miz-founder-badge--reply {
    right: 12px;
    bottom: 12px;
  }
}


@media (max-width: 540px) {
  .miz-founder-stats {
    grid-template-columns: 1fr;
  }
  .miz-founder-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
}


/* ─────────────────────────────────────────────────────────
   ACCESSIBILITY & TOUCH — WCAG AA + Touch-44px
   ───────────────────────────────────────────────────────── */


/* Focus-Visible Style: nur für Keyboard-Nutzer sichtbar */
*:focus{
  outline: none;
}
*:focus-visible{
  outline: 3px solid rgba(10, 132, 255, .6);
  outline-offset: 3px;
  border-radius: 4px;
  transition: outline-offset .15s ease;
}
.miz-btn:focus-visible,
.miz-nav-link:focus-visible,
.miz-nav-cta:focus-visible{
  outline-offset: 4px;
}


/* Touch-Target Garantie (WCAG 2.5.5 Level AAA, min 44px) */
.miz-btn,
.miz-nav-link,
.miz-nav-cta,
.miz-faq-item summary,
.miz-flow-step,
.miz-page-related-link{
  min-height: 44px;
}


/* Skip-to-Content Link für Screen-Reader/Keyboard */
.miz-skip-link{
  position: absolute;
  top: -40px;
  left: 16px;
  z-index: 9999;
  padding: 10px 18px;
  border-radius: 10px;
  background: #020813;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-200%);
  transition: transform .25s ease;
}
.miz-skip-link:focus-visible{
  transform: translateY(56px);
  outline: 3px solid #0a84ff;
}


/* Reduzierte Bewegung für sensible Nutzer */

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


/* ═══════════════════════════════════════════════════════════
   APPLE-TV OS POLISH-PASS
   ───────────────────────────────────────────────────────────
   Konsolidiert: einheitliche Radii, Shadows, Glassmorphismus,
   reduziert CPU-heavy Animationen (Conic-Rotation, infinite-Pulses).
   Überschreibt vorherige Regeln gezielt — keine Refactors am alten Code.
   ═══════════════════════════════════════════════════════════ */
:root{
  /* Apple-tvOS Tokens — konsolidiert */
  --tv-radius-sm: 14px;
  --tv-radius:    22px;
  --tv-radius-lg: 28px;
  --tv-shadow-sm: 0 6px 18px rgba(2, 8, 19, .12);
  --tv-shadow-md: 0 18px 42px rgba(2, 8, 19, .22);
  --tv-shadow-lg: 0 36px 84px rgba(2, 8, 19, .42);
  --tv-glow-blue: 0 0 0 1px rgba(10, 132, 255, .22), 0 0 60px rgba(10, 132, 255, .18);
  --tv-ease-out: cubic-bezier(.22, .61, .36, 1);
  --tv-ease-tile: cubic-bezier(.2, .9, .3, 1.15);
}


/* ── 1. Performance: Conic-Rotation auf Flow-Steps ENTFERNEN ── */
.miz-flow-step::before{
  animation: none !important;
  background: none !important;
  border: none !important;
}
.miz-flow-step:hover::before{
  animation: none !important;
}


/* ── 2. Flow-Step Hover-Icon-Pulses auf ein gemeinsames, dezenteres Verhalten ── */
.miz-flow-step:hover .miz-flow-icon i{
  animation: none !important;
  transform: scale(1.08);
  transition: transform .35s var(--tv-ease-tile);
}


/* ── 3. Tote Timeline-Klassen sicher abklemmen (alter Code) ── */


/* ── 4. Flow-Step in Apple TV Tile-Style umsetzen ── */
.miz-flow-step{
  border-radius: var(--tv-radius);
  border: 1px solid rgba(255, 255, 255, .07);
  box-shadow: var(--tv-shadow-md);
  background: linear-gradient(165deg, rgba(20, 34, 58, .85) 0%, rgba(9, 22, 42, .92) 100%);
  transition:
    transform .42s var(--tv-ease-tile),
    box-shadow .42s var(--tv-ease-out),
    background .42s var(--tv-ease-out),
    opacity .35s var(--tv-ease-out),
    filter .35s var(--tv-ease-out);
}
.miz-flow-step:hover{
  transform: translateY(-8px) scale(1.025);
  background: linear-gradient(165deg, rgba(28, 46, 72, .96) 0%, rgba(11, 26, 48, .98) 100%);
  box-shadow: var(--tv-shadow-lg), var(--tv-glow-blue);
}


/* Sibling-Dim subtiler (Apple TV blurrt nur leicht statt hart zu dimmen) */
.miz-flow:has(.miz-flow-step:hover) .miz-flow-step:not(:hover){
  opacity: .68;
  filter: saturate(.85);
  transform: scale(.98);
}


/* ── 5. Service-Cards in Apple TV Tile-Style ── */
.miz-service-card{
  border-radius: var(--tv-radius);
  box-shadow: var(--tv-shadow-md);
  transition:
    transform .42s var(--tv-ease-tile),
    box-shadow .42s var(--tv-ease-out);
}
.miz-service-card:hover{
  transform: translateY(-6px) scale(1.018);
  box-shadow: var(--tv-shadow-lg), var(--tv-glow-blue);
}


/* ── 6. FAQ-Items in Apple TV Tile-Style ── */
.miz-faq-item{
  border-radius: var(--tv-radius);
  box-shadow: var(--tv-shadow-sm);
  transition: box-shadow .35s var(--tv-ease-out), transform .35s var(--tv-ease-tile);
}
.miz-faq-item:hover{
  transform: translateY(-3px);
  box-shadow: var(--tv-shadow-md);
}
.miz-faq-item[open]{
  box-shadow: var(--tv-shadow-md), var(--tv-glow-blue);
}


/* ── 7. Konsistente Buttons (Apple-Style) ── */
.miz-btn{
  border-radius: 999px;
  transition:
    transform .25s var(--tv-ease-tile),
    box-shadow .25s var(--tv-ease-out),
    background .25s var(--tv-ease-out);
}
.miz-btn-primary{
  color: #fff;
  box-shadow:
    0 12px 28px rgba(10, 132, 255, .32),
    inset 0 1px 0 rgba(255, 255, 255, .18);
}
.miz-btn-primary:link,
.miz-btn-primary:visited{
  color: #fff;
}
.miz-btn-primary:hover{
  transform: translateY(-2px);
  box-shadow:
    0 18px 40px rgba(10, 132, 255, .48),
    inset 0 1px 0 rgba(255, 255, 255, .25);
}


/* ── 8. Hero-Visual: Apple TV Glass Panel ── */
.miz-hero-panel{
  border-radius: var(--tv-radius-lg);
  box-shadow:
    var(--tv-shadow-lg),
    inset 0 1px 0 rgba(255, 255, 255, .12);
  transition: transform .5s var(--tv-ease-tile), box-shadow .5s var(--tv-ease-out);
}
.miz-hero-panel:hover{
  box-shadow:
    0 50px 100px rgba(2, 8, 19, .5),
    0 0 100px rgba(10, 132, 255, .14),
    inset 0 1px 0 rgba(255, 255, 255, .18);
}


/* ── 9. Section-Backgrounds vereinfacht ── */
.miz-section-problem{
  background:
    radial-gradient(circle at 12% 8%, rgba(10, 132, 255, .12), transparent 36%),
    linear-gradient(180deg, #050d1c 0%, #081429 100%);
}
.miz-section:not(.miz-section-light):not(.miz-section-problem){
  background:
    radial-gradient(circle at 78% 4%, rgba(10, 132, 255, .10), transparent 38%),
    linear-gradient(180deg, #061327 0%, #0a1a36 100%);
}


/* ── 10. Backdrop-blur nur auf essentiellen Elementen ── */

/* Flow-Step braucht kein backdrop-blur — der Hintergrund ist solid */
.miz-flow-step{
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}


/* ── 11. Nav: Apple-Style Glas-Bar wenn gescrollt ── */
.miz-nav.is-scrolled{
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(2, 8, 19, .72);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}


/* ── 12. Promise-List in Apple TV Style ── */


/* ── 13. Stats-Bar: Apple-Style Dark Tile ── */


/* ── 14. Mobile-Menu: bessere Glas-Optik ── */
.miz-mobile-menu{
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
}


/* ── 15. Reduktion: alte Card-Animationen die nicht mehr verwendet werden ── */


/* ── 16. Cursor-Glow dezenter ── */


/* ── 17. Section-CTA-Bands: Apple-Tile ── */
.miz-section-cta{
  border-radius: var(--tv-radius);
  box-shadow: var(--tv-shadow-md);
}


/* ── 18. Number-Badge in Flow ── */
.miz-flow-num{
  /* Default state subtiler — wird beim Hover groß+opaque */
  opacity: .14;
}
.miz-flow-step:hover .miz-flow-num{
  opacity: 1;
}


/* ── 19. Reduce paint complexity: contain wo möglich ── */
.miz-faq-item,
.miz-flow-step,
.miz-service-card,
.miz-hero-panel,
.miz-info-card{
  contain: layout style;
}


/* ── 20. Reduced-Motion: ALLE Premium-Tile-Hovers neutralisieren ── */

@media (prefers-reduced-motion: reduce) {
  .miz-flow-step:hover,
  .miz-service-card:hover,
  .miz-faq-item:hover,
  .miz-hero-panel:hover {
    transform: none !important;
  }
  .miz-flow-step:hover .miz-flow-icon i {
    transform: none !important;
  }
}


/* ═══════════════════════════════════════════════════════════
   VERTRAUEN-SECTION REDESIGN — "Zwei-Welten-Brücke"
   ═══════════════════════════════════════════════════════════ */
#vertrauen .miz-section-head{
  text-align: center;
  margin: 0 auto 56px;
  max-width: 880px;
}
#vertrauen .miz-section-head h2{
  font-size: var(--miz-fs-h2);
  font-weight: 900;
  line-height: var(--miz-lh-h2);
  letter-spacing: var(--miz-ls-h2);
  color: #051124;
  margin: 18px 0 16px;
}
#vertrauen .miz-section-head p{
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.6;
  color: #2a3a55;
  max-width: 680px;
  margin: 0 auto;
}


/* ── HANDSHAKE: SIE ↔ ICH Split ── */
.miz-handshake{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 22px;
  align-items: stretch;
  margin: 0 auto 56px;
  max-width: 1080px;
}
.miz-handshake-tile{
  position: relative;
  padding: 36px 32px 32px;
  border-radius: var(--tv-radius);
  border: 1px solid rgba(10, 132, 255, .08);
  box-shadow: var(--tv-shadow-md);
  background: linear-gradient(165deg, #ffffff 0%, #f4f8fc 100%);
  transition:
    transform .42s var(--tv-ease-tile),
    box-shadow .42s var(--tv-ease-out);
  contain: layout style;
}
.miz-handshake-tile:hover{
  transform: translateY(-4px);
  box-shadow: var(--tv-shadow-lg), var(--tv-glow-blue);
}
.miz-handshake-tile--me{
  background: linear-gradient(165deg, #061327 0%, #0a1a36 100%);
  color: #e8f0f8;
  border-color: rgba(10, 132, 255, .25);
}
.miz-handshake-tile__chip{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(10, 132, 255, .14), rgba(10, 132, 255, .04));
  border: 1px solid rgba(10, 132, 255, .28);
  color: var(--miz-blue);
}
.miz-handshake-tile--me .miz-handshake-tile__chip{
  background: linear-gradient(135deg, rgba(10, 132, 255, .22), rgba(10, 132, 255, .08));
  color: #b9d8ff;
  border-color: rgba(10, 132, 255, .42);
}
.miz-handshake-tile__chip i{
  font-size: 14px;
}
.miz-handshake-tile h3{
  margin: 16px 0 22px;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: 1.15;
  color: inherit;
}
.miz-handshake-tile ul{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.miz-handshake-tile li{
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15.5px;
  line-height: 1.4;
  color: inherit;
}
.miz-handshake-tile li i{
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 19px;
  background: linear-gradient(135deg, var(--miz-blue), var(--miz-blue-2));
  color: #fff;
  box-shadow: 0 10px 22px rgba(10, 132, 255, .28);
}


/* Bridge zwischen den Tiles */
.miz-handshake-bridge{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 56px;
  align-self: stretch;
}
.miz-handshake-bridge__line{
  flex: 1;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(10, 132, 255, .35), transparent);
}
.miz-handshake-bridge__symbol{
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--miz-blue), var(--miz-blue-2));
  color: #fff;
  font-size: 22px;
  box-shadow:
    0 18px 38px rgba(10, 132, 255, .42),
    0 0 0 6px rgba(10, 132, 255, .12);
}


/* ── BRANCHES: Was ich kenne ── */
.miz-branches{
  margin: 0 auto 56px;
  max-width: 1080px;
}
.miz-branches__label{
  display: block;
  margin-bottom: 18px;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--miz-blue);
}
.miz-branches__grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.miz-branch-tile{
  padding: 24px 22px 22px;
  border-radius: var(--tv-radius);
  border: 1px solid rgba(10, 132, 255, .10);
  background: linear-gradient(180deg, #ffffff 0%, #f7fafd 100%);
  box-shadow: var(--tv-shadow-sm);
  transition:
    transform .35s var(--tv-ease-tile),
    box-shadow .35s var(--tv-ease-out),
    border-color .35s var(--tv-ease-out);
  contain: layout style;
}
.miz-branch-tile:hover{
  transform: translateY(-4px) scale(1.012);
  box-shadow: var(--tv-shadow-md), var(--tv-glow-blue);
  border-color: rgba(10, 132, 255, .32);
}
.miz-branch-tile i{
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 22px;
  background: linear-gradient(135deg, var(--miz-blue), var(--miz-blue-2));
  color: #fff;
  box-shadow: 0 14px 28px rgba(10, 132, 255, .32);
  margin-bottom: 14px;
}
.miz-branch-tile strong{
  display: block;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -.015em;
  color: #051124;
  margin-bottom: 6px;
}
.miz-branch-tile span{
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: #46597a;
}


/* ── FOUNDER-CARD: kompakt mit Foto + Quote ── */


@keyframes miz-status-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .65; transform: scale(.88); }
}


/* ── REGIONS: Bremen-Tag-Cloud ── */


/* ── Action-Buttons unten zentriert ── */


/* ── Mobile ── */

@media (max-width: 900px) {
  .miz-handshake {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .miz-handshake-bridge {
    flex-direction: row;
    min-width: 0;
    align-self: auto;
    padding: 4px 0;
  }

  .miz-handshake-bridge__line {
    height: 2px;
    width: auto;
    flex: 1;
    background: linear-gradient(90deg, transparent, rgba(10, 132, 255, .35), transparent);
  }

  .miz-branches__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .miz-founder-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 24px;
  }

  .miz-founder-card__image {
    margin: 0 auto;
    width: 180px;
    height: 180px;
  }

  .miz-founder-card__meta {
    justify-content: center;
  }
}


@media (max-width: 540px) {
  .miz-branches__grid {
    grid-template-columns: 1fr;
  }

  #vertrauen .miz-founder-actions {
    flex-direction: column;
    align-items: stretch;
  }
}


@media (prefers-reduced-motion: reduce) {
  .miz-handshake-tile:hover,
  .miz-branch-tile:hover,
  .miz-regions__tags span:hover {
    transform: none !important;
  }
  .miz-founder-card__status i {
    animation: none !important;
  }
}


/* ═══════════════════════════════════════════════════════════
   PROFIL-CARD (Social-Media-Style) — Ibrahim
   ═══════════════════════════════════════════════════════════ */
.miz-profile{
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: start;
  margin: 0 auto 48px;
  max-width: 920px;
  padding: 44px 44px 56px;
  border-radius: var(--tv-radius-lg);
  background:
    radial-gradient(circle at 0% 0%, rgba(10, 132, 255, .08), transparent 38%),
    linear-gradient(135deg, #ffffff 0%, #f4f8fc 100%);
  border: 1px solid rgba(10, 132, 255, .14);
  box-shadow: var(--tv-shadow-md);
  contain: layout style;
}


/* ── AVATAR — rund mit Glow-Ring, Verified-Tick und Online-Dot ── */
.miz-profile__avatar{
  position: relative;
  width: 168px;
  height: 168px;
  flex-shrink: 0;
  /* WICHTIG: KEIN overflow:hidden hier — sonst werden Badges abgeschnitten */
}
.miz-profile__avatar img{
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%; /* Gesicht im Zentrum */
  display: block;
  background: #ffffff; /* MIZ-FIX: Profil-Avatar Hintergrund neutral (war Gradient) — Freigabe Ibrahim */
  box-shadow:
    0 0 0 4px #ffffff,
    0 0 0 8px rgba(10, 132, 255, .28),
    0 24px 52px rgba(2, 8, 19, .26);
}


/* Verified-Tick (wie Instagram/Twitter Blue-Check) — schwebt rechts unten */
.miz-profile__verified{
  position: absolute;
  right: 0;
  bottom: 8px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 6px 14px rgba(10, 132, 255, .48));
  z-index: 2;
}
.miz-profile__verified svg{
  width: 100%;
  height: 100%;
}


/* Online-Status-Dot — links unten am Avatar */
.miz-profile__online{
  position: absolute;
  left: 8px;
  bottom: 14px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #25d366;
  border: 3px solid #fff;
  box-shadow: 0 0 12px rgba(37, 211, 102, .55);
  z-index: 2;
}
.miz-profile__online::after{
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37, 211, 102, .35);
  animation: miz-profile-ping 2s ease-out infinite;
  z-index: -1;
}


@keyframes miz-profile-ping {
  0%   { transform: scale(.7); opacity: .9; }
  100% { transform: scale(1.7); opacity: 0; }
}


/* ── BODY ── */
.miz-profile__body{
  min-width: 0;
}
.miz-profile__head{
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}
.miz-profile__name{
  margin: 0;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 900;
  letter-spacing: -.025em;
  color: #051124;
  line-height: 1.1;
}
.miz-profile__handle{
  font-size: 14px;
  font-weight: 600;
  color: #46597a;
}
.miz-profile__bio{
  margin: 0 0 18px;
  font-size: 15.5px;
  line-height: 1.62;
  color: #1a2a44;
}
.miz-profile__bio br{
  display: block;
  content: "";
  margin-top: 6px;
}


/* ── TAGS — Themen die er kennt ── */
.miz-profile__tags{
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.miz-profile__tags li{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #2a3a55;
  background: rgba(10, 132, 255, .08);
  border: 1px solid rgba(10, 132, 255, .18);
  transition: transform .25s var(--tv-ease-out), background .25s var(--tv-ease-out);
}
.miz-profile__tags li:hover{
  transform: translateY(-2px);
  background: rgba(10, 132, 255, .14);
}
.miz-profile__tags i{
  color: var(--miz-blue);
  font-size: 15px;
}


/* ── STATS — wie Follower-Bar bei Social Media ── */


/* ── QUOTE ── */


/* ── ACTIONS ── */
.miz-profile__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.miz-profile__actions .miz-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}


/* Primary-Button: weißer Text auf blauem Gradient */
.miz-profile__actions .miz-btn-primary{
  color: #fff !important;
}
.miz-profile__actions .miz-btn-primary i,
.miz-profile__actions .miz-btn-primary svg{
  color: #fff;
}


/* ── MOBILE ── */

@media (max-width: 720px) {
  .miz-profile {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 22px;
  }

  .miz-profile__avatar {
    margin: 0 auto;
    width: 140px;
    height: 140px;
  }

  .miz-profile__head,
  .miz-profile__tags,
  .miz-profile__stats,
  .miz-profile__actions {
    justify-content: center;
    align-items: center;
  }

  .miz-profile__tags,
  .miz-profile__actions {
    justify-content: center;
  }

  .miz-profile__stats > div {
    align-items: center;
  }

  .miz-profile__quote {
    text-align: left;
  }
}


@media (max-width: 480px) {
  .miz-profile__stats {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .miz-profile__stats > div {
    flex-direction: row;
    gap: 8px;
    align-items: baseline;
  }
}


@media (prefers-reduced-motion: reduce) {
  .miz-profile__online::after,
  .miz-profile__tags li:hover {
    animation: none !important;
    transform: none !important;
  }
}


/* ═══════════════════════════════════════════════════════════
   PROBLEM-SECTION POLISH — Apple-tvOS Tile-Style
   ═══════════════════════════════════════════════════════════ */


/* Cards einheitliches Apple-Tile-Verhalten */
.miz-section-problem .miz-info-card{
  border-radius: var(--tv-radius);
  box-shadow: var(--tv-shadow-md);
  border: 1px solid rgba(10, 132, 255, .12);
  transition:
    transform .42s var(--tv-ease-tile),
    box-shadow .42s var(--tv-ease-out),
    border-color .42s var(--tv-ease-out);
  contain: layout style;
}
.miz-section-problem .miz-info-card:hover{
  transform: translateY(-6px) scale(1.012);
  box-shadow: var(--tv-shadow-lg), var(--tv-glow-blue);
  border-color: rgba(10, 132, 255, .32);
}


/* Card-Number prominenter — wie Apple TV Step-Indicator */
.miz-section-problem .miz-card-number{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #ff7a59;
  background: linear-gradient(135deg, rgba(255, 122, 89, .14), rgba(255, 122, 89, .04));
  border: 1px solid rgba(255, 122, 89, .28);
  margin-bottom: 14px;
}
.miz-section-problem .miz-card-number::before{
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff7a59;
  box-shadow: 0 0 8px rgba(255, 122, 89, .65);
  flex-shrink: 0;
}


/* Quote-Block aufwerten */
.miz-section-problem .miz-info-body blockquote{
  position: relative;
  margin: 18px 0 0;
  padding: 14px 16px 14px 22px;
  border-left: 3px solid rgba(255, 122, 89, .6);
  border-radius: 0 12px 12px 0;
  background: linear-gradient(135deg, rgba(255, 122, 89, .06), transparent 60%);
  font-style: italic;
  font-size: 14.5px;
  line-height: 1.45;
  color: rgba(232, 240, 248, .82);
}
.miz-section-problem .miz-info-body blockquote::before{
  content: "„";
  position: absolute;
  top: -4px;
  left: 8px;
  font-family: Georgia, serif;
  font-size: 28px;
  color: rgba(255, 122, 89, .8);
  line-height: 1;
  font-style: normal;
}


/* Bridge-Statement: visueller Wendepunkt */
.miz-problem-bridge{
  position: relative;
  margin: 48px auto 32px;
  max-width: 720px;
  padding: 28px 36px;
  border-radius: var(--tv-radius);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(10, 132, 255, .18), transparent 60%),
    linear-gradient(180deg, rgba(15, 32, 58, .72) 0%, rgba(8, 22, 44, .82) 100%);
  border: 1px solid rgba(10, 132, 255, .22);
  box-shadow: var(--tv-shadow-md);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.miz-problem-bridge::before{
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--miz-blue), var(--miz-blue-2));
  display: grid;
  place-items: center;
  box-shadow: 0 14px 32px rgba(10, 132, 255, .42), 0 0 0 6px rgba(10, 132, 255, .12);
}
.miz-problem-bridge::after{
  content: "↓";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  z-index: 1;
  line-height: 1;
}
.miz-problem-bridge strong{
  display: block;
  margin-bottom: 8px;
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 900;
  letter-spacing: -.02em;
  color: #fff;
  line-height: 1.25;
}
.miz-problem-bridge span{
  display: block;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(207, 222, 240, .88);
}


@media (prefers-reduced-motion: reduce) {
  .miz-section-problem .miz-info-card:hover {
    transform: none !important;
  }
}


/* ═══════════════════════════════════════════════════════════
   3D PROBLEM-VISUALS — Premium Depth + Motion
   ═══════════════════════════════════════════════════════════ */
.miz-stage{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: 22px 22px 0 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 50% 30%, rgba(10, 132, 255, .12), transparent 60%),
    linear-gradient(165deg, #061327 0%, #0a1a36 100%);
  perspective: 1400px;
  perspective-origin: 50% 40%;
  isolation: isolate;
  contain: layout style paint;
}
.miz-stage__bg{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(50, 211, 239, .08), transparent 38%),
    radial-gradient(circle at 80% 20%, rgba(10, 132, 255, .14), transparent 42%);
  z-index: 0;
}


/* Subtle dot-grid für Tiefe */
.miz-stage::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 22px 22px;
  z-index: 0;
  pointer-events: none;
}
.miz-info-card:hover .miz-stage{
  /* Hover-Effekt wird durch interne Animationen abgedeckt */
}


/* ── STAGE 1: SILENT PHONE ── */

@keyframes miz-phone-float {
  0%, 100% { transform: rotateX(5deg) rotateY(-8deg) rotateZ(-1deg) translateY(0) translateZ(20px); }
  50%      { transform: rotateX(4deg) rotateY(-6deg) rotateZ(-.4deg) translateY(-6px) translateZ(30px); }
}


@keyframes miz-floater-drift {
  0%, 100% { opacity: .25; transform: translateY(0) scale(1); }
  50%      { opacity: .55; transform: translateY(-10px) scale(1.05); }
}
.miz-stage[data-stage="silent"] .miz-phone3d{
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(188px, 21vw, 238px);
  aspect-ratio: 560 / 824;
  margin: clamp(-205px, -18vw, -178px) 0 0 clamp(-120px, -10.5vw, -96px);
  border-radius: 34px;
  background: transparent;
  border: 0;
  box-shadow:
    0 34px 70px rgba(2, 8, 19, .42),
    0 0 0 1px rgba(10, 132, 255, .10);
  transform-style: preserve-3d;
  transform: rotateX(5deg) rotateY(-8deg) rotateZ(-1deg) translateZ(20px);
  animation: miz-phone-float 6s ease-in-out infinite;
  z-index: 2;
}
.miz-stage[data-stage="silent"] .miz-phone3d__frame{
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  filter:
    drop-shadow(0 20px 34px rgba(2, 8, 19, .28))
    drop-shadow(0 0 18px rgba(10, 132, 255, .10));
}
.miz-stage[data-stage="silent"] .miz-phone3d__screen{
  position: absolute;
  left: 18.5%;
  top: 8.8%;
  width: 61%;
  height: 80.5%;
  z-index: 2;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 10%, rgba(10, 132, 255, .34), transparent 42%),
    radial-gradient(circle at 50% 92%, rgba(255, 122, 89, .18), transparent 34%),
    linear-gradient(160deg, #102241 0%, #07152c 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 9px 13px;
  gap: 10px;
  overflow: hidden;
  clip-path: polygon(21% 0, 100% 3%, 80% 100%, 0 97%);
  transform: skewY(-2deg) rotate(-.8deg);
  transform-origin: center;
  box-shadow:
    inset 0 0 24px rgba(10, 132, 255, .14),
    inset 0 1px 0 rgba(255, 255, 255, .08);
}
.miz-stage[data-stage="silent"] .miz-phone3d__status{
  position: absolute;
  top: 11px;
  left: 15px;
  right: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(237, 246, 255, .72);
  font-size: 8.5px;
  font-weight: 850;
  letter-spacing: .02em;
}
.miz-stage[data-stage="silent"] .miz-phone3d__status i{
  font-size: 9px;
}
.miz-stage[data-stage="silent"] .miz-phone3d__appbar{
  width: 100%;
  min-height: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  border-radius: 13px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .06);
  color: rgba(237, 246, 255, .82);
  font-size: 9px;
  font-weight: 900;
}
.miz-stage[data-stage="silent"] .miz-phone3d__appbar i{
  color: rgba(255, 168, 138, .95);
  font-size: 12px;
}
.miz-stage[data-stage="silent"] .miz-phone3d__metric{
  width: 100%;
  flex: 1 1 0;
  min-height: 128px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.miz-stage[data-stage="silent"] .miz-phone3d__label{
  max-width: 100%;
  font-size: 8.5px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(185, 216, 255, .72);
  white-space: nowrap;
}
.miz-stage[data-stage="silent"] .miz-phone3d__count{
  font-size: 68px;
  font-weight: 950;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, #b9d8ff 70%, #6a8db5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -.05em;
  margin: 0;
}
.miz-stage[data-stage="silent"] .miz-phone3d__sub{
  font-size: 10.5px;
  font-weight: 700;
  color: rgba(185, 216, 255, .72);
  letter-spacing: .02em;
  white-space: nowrap;
}
.miz-stage[data-stage="silent"] .miz-phone3d__empty{
  width: 100%;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 10px;
  border-radius: 15px;
  border: 1px solid rgba(255, 122, 89, .24);
  background:
    linear-gradient(135deg, rgba(255, 122, 89, .18), rgba(255, 122, 89, .08));
  color: rgba(255, 221, 210, .95);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}
.miz-stage[data-stage="silent"] .miz-phone3d__empty i{
  flex: 0 0 auto;
  color: rgba(255, 168, 138, .95);
  font-size: 14px;
}
.miz-stage[data-stage="silent"] .miz-phone3d__empty em{
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-style: normal;
  font-size: 10px;
  font-weight: 850;
}
.miz-stage[data-stage="silent"] .miz-phone3d__alerts{
  width: 100%;
  display: grid;
  gap: 6px;
}
.miz-stage[data-stage="silent"] .miz-phone3d__alerts span{
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 26px;
  padding: 0 8px;
  border-radius: 12px;
  border: 1px solid rgba(255, 122, 89, .20);
  background: rgba(255, 122, 89, .10);
  color: rgba(255, 221, 210, .92);
  font-size: 8.8px;
  font-weight: 760;
  line-height: 1.15;
}
.miz-stage[data-stage="silent"] .miz-phone3d__alerts i{
  flex: 0 0 auto;
  color: rgba(255, 168, 138, .88);
  font-size: 11px;
}
.miz-stage[data-stage="silent"] .miz-phone3d__alerts em{
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-style: normal;
}


/* Glow hinter Phone */
.miz-stage[data-stage="silent"] .miz-phone3d__glow{
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 132, 255, .28), transparent 70%);
  filter: blur(28px);
  z-index: -1;
  pointer-events: none;
}


/* Floating Notifications hinter Phone */
.miz-stage[data-stage="silent"] .miz-stage__floaters{
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.miz-floater{
  position: absolute;
  left: var(--fx);
  top: var(--fy);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  color: rgba(185, 216, 255, .55);
  font-size: 20px;
  backdrop-filter: blur(10px);
  animation: miz-floater-drift 4s ease-in-out infinite;
  animation-delay: var(--fd);
}


/* ── STAGE 2: COMPARE (Winner vs. Own) ── */
.miz-stage[data-stage="compare"]{
  display: grid;
  place-items: center;
}
.miz-stage[data-stage="compare"] .miz-mapdots{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}


@keyframes miz-mapdot-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.12); }
}


/* Inline-SVG-Stars (Ersatz für fehlende ti-star-filled) */


/* Winner Beam — diagonaler Lichtstrahl */


/* ── STAGE 3: BROKEN ── */
.miz-stage[data-stage="broken"] .miz-broken-lines{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  animation: miz-broken-flicker 2.4s ease-in-out infinite;
}


.miz-stage[data-stage="broken"] .miz-chips{
  position: absolute;
  inset: 16% 8% auto 8%;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  z-index: 2;
  perspective: 800px;
}


@keyframes miz-chip-bob {
  0%, 100% { transform: rotateY(0deg) translateZ(20px) translateY(0); }
  50%      { transform: rotateY(0deg) translateZ(20px) translateY(-4px); }
}
.miz-stage[data-stage="broken"] .miz-reqresult{
  position: absolute;
  bottom: 14%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 12px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 122, 89, .12), rgba(255, 122, 89, .04));
  border: 1px dashed rgba(255, 122, 89, .42);
  color: #ffb59c;
  z-index: 2;
  text-decoration: line-through;
  text-decoration-color: rgba(255, 122, 89, .6);
  text-decoration-thickness: 2px;
}
.miz-stage[data-stage="broken"] .miz-reqresult i{
  font-size: 22px;
  text-decoration: none;
}
.miz-stage[data-stage="broken"] .miz-reqresult strong{
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}
.miz-stage[data-stage="broken"] .miz-reqresult span{
  font-size: 10.5px;
  color: rgba(255, 168, 138, .85);
}


/* ── Cards-Container Hover-Boost ── */
.miz-info-card:hover .miz-stage{
  box-shadow: inset 0 0 0 1px rgba(10, 132, 255, .14);
}


/* Reduced-Motion: alle Floating-Animationen anhalten */

@media (prefers-reduced-motion: reduce) {
  .miz-phone3d,
  .miz-floater,
  .miz-mapdot--win,
  .miz-vcard--winner,
  .miz-vcard--own,
  .miz-vcard__stars i,
  .miz-broken-lines,
  .miz-chip--google {
    animation: none !important;
  }
}


@media (max-width: 720px) {
  .miz-stage[data-stage="silent"] .miz-phone3d {
    width: 132px;
    margin: -133px 0 0 -66px;
  }
  .miz-stage[data-stage="silent"] .miz-phone3d__count {
    font-size: 70px;
  }

  .miz-stage[data-stage="silent"] .miz-phone3d__metric {
    min-height: 116px;
  }

  .miz-stage[data-stage="silent"] .miz-phone3d__empty {
    min-height: 38px;
  }

  .miz-stage[data-stage="silent"] .miz-phone3d__empty em {
    font-size: 9px;
  }
  .miz-vcard {
    width: 64%;
  }
  .miz-chip {
    padding: 8px 6px;
  }
}


/* ═══════════════════════════════════════════════════════════
   STAGE BÜHNE — Apple-Produkt-Stil: helle Bühne, dunkle Objekte
   ═══════════════════════════════════════════════════════════ */
.miz-stage{
  /* Helle Bühne mit Tiefe — wirkt wie ein Apple-Produkt-Shot */
  background:
    radial-gradient(ellipse 65% 70% at 50% 18%, #ffffff 0%, rgba(255,255,255,0) 60%),
    radial-gradient(ellipse 100% 75% at 50% 100%, #d5dde6 0%, transparent 60%),
    linear-gradient(180deg, #f6f8fb 0%, #e6ecf2 100%);
  border-bottom: 1px solid rgba(2, 8, 19, .06);
}
.miz-stage__bg{
  background:
    radial-gradient(circle at 26% 12%, rgba(10, 132, 255, .06), transparent 38%),
    radial-gradient(circle at 78% 88%, rgba(2, 8, 19, .04), transparent 40%);
}


/* Dot-Grid: dunkler & dezenter auf hellem BG */
.miz-stage::before{
  background-image: radial-gradient(circle, rgba(2, 8, 19, .045) 1px, transparent 1px);
  background-size: 22px 22px;
}


/* Bodenschatten unter den 3D-Objekten — verstärkt Tiefenwahrnehmung */
.miz-stage::after{
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 6%;
  height: 22px;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(2, 8, 19, .22), transparent 70%);
  filter: blur(8px);
  z-index: 0;
  pointer-events: none;
}


/* ── STAGE 1 SILENT — Anpassungen für helle Bühne ── */
.miz-stage[data-stage="silent"] .miz-phone3d{
  /* Stärkerer Schatten — Phone hebt sich von heller Bühne ab */
  box-shadow:
    0 40px 70px rgba(2, 8, 19, .32),
    0 18px 38px rgba(2, 8, 19, .22),
    0 0 0 1px rgba(2, 8, 19, .06),
    inset 0 1px 0 rgba(255, 255, 255, .14);
}
.miz-stage[data-stage="silent"] .miz-phone3d__glow{
  background: radial-gradient(circle, rgba(10, 132, 255, .14), transparent 70%);
  filter: blur(36px);
}


/* Floaters: lesbar auf hellem BG, dunkel mit Glas-Effekt */
.miz-stage[data-stage="silent"] .miz-floater{
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(2, 8, 19, .08);
  color: rgba(50, 65, 92, .55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 6px 16px rgba(2, 8, 19, .08);
}


/* ── STAGE 2 COMPARE — Winner & Own auf heller Bühne ── */


/* Winner: bleibt hell, bekommt aber tieferen Schatten zur Bühne */
.miz-stage[data-stage="compare"] .miz-vcard--winner{
  box-shadow:
    0 36px 64px rgba(2, 8, 19, .22),
    0 14px 24px rgba(2, 8, 19, .12),
    0 0 0 1px rgba(10, 132, 255, .16),
    0 0 32px rgba(10, 132, 255, .14);
}


/* Own: bleibt dunkel — Kontrast zur hellen Bühne verstärkt */
.miz-stage[data-stage="compare"] .miz-vcard--own{
  box-shadow:
    0 22px 44px rgba(2, 8, 19, .32),
    0 8px 16px rgba(2, 8, 19, .18);
}


/* Map-Dots: lesbar auf hellem BG */
.miz-stage[data-stage="compare"] .miz-mapdot{
  background: rgba(255, 255, 255, .85);
  border: 1px solid rgba(2, 8, 19, .08);
  color: rgba(50, 65, 92, .55);
  box-shadow: 0 4px 10px rgba(2, 8, 19, .06);
}
.miz-stage[data-stage="compare"] .miz-mapdot--win{
  background: linear-gradient(135deg, #0a84ff, #1aa7ff);
  color: #fff;
  box-shadow:
    0 14px 28px rgba(10, 132, 255, .42),
    0 0 0 4px rgba(10, 132, 255, .12);
}


/* ── STAGE 3 BROKEN — Chips & Lines auf heller Bühne ── */


/* Chips: dunkel bleiben für Kontrast, aber Schatten anpassen */
.miz-stage[data-stage="broken"] .miz-chip{
  box-shadow:
    0 22px 42px rgba(2, 8, 19, .26),
    0 8px 16px rgba(2, 8, 19, .14),
    inset 0 1px 0 rgba(255, 255, 255, .06);
}


/* SVG-Bruchlinien: stärker sichtbar auf hellem BG */
.miz-stage[data-stage="broken"] .miz-broken-lines path{
  stroke: rgba(255, 122, 89, .85);
}


/* Anfrage-Card: helle Variante für die helle Bühne */
.miz-stage[data-stage="broken"] .miz-reqresult{
  background: linear-gradient(135deg, rgba(255, 122, 89, .14), rgba(255, 122, 89, .06));
  border: 1px dashed rgba(255, 122, 89, .58);
  color: #c2451c;
  box-shadow: 0 12px 24px rgba(2, 8, 19, .08);
}
.miz-stage[data-stage="broken"] .miz-reqresult span{
  color: rgba(194, 69, 28, .82);
}


/* ═══════════════════════════════════════════════════════════
   STARTSEITE HERO, final contrast/depth layer
   Goal: clear local promise, stronger light/dark separation, no heavy runtime cost.
   ═══════════════════════════════════════════════════════════ */
.miz-page-home .miz-hero{
  min-height: clamp(760px, 92vh, 900px);
  background:
    radial-gradient(circle at 18% 9%, rgba(10, 132, 255, .13), transparent 31%),
    radial-gradient(circle at 82% 16%, rgba(37, 211, 102, .075), transparent 30%),
    linear-gradient(180deg, #f7fbff 0%, #edf5fc 100%);
}
.miz-page-home .miz-hero-bg{
  background:
    linear-gradient(90deg,
      rgba(248, 252, 255, .94) 0%,
      rgba(248, 252, 255, .80) 30%,
      rgba(248, 252, 255, .35) 54%,
      rgba(7, 19, 37, .08) 100%
    ),
    linear-gradient(180deg,
      rgba(255, 255, 255, .60) 0%,
      rgba(255, 255, 255, .10) 48%,
      rgba(244, 249, 255, .90) 100%
    ),
    radial-gradient(circle at 18% 14%, rgba(10, 132, 255, .14), transparent 30%),
    url("./images/Homeinto1.webp");
  background-size: cover;
  background-position: 61% center;
  filter: saturate(1.05) contrast(1.05);
}
.miz-page-home .miz-hero-copy{
  position: relative;
  z-index: 3;
}
.miz-page-home .miz-hero-grid{
  z-index: 3;
}
.miz-page-home .miz-hero::after{
  z-index: 1;
}
.miz-page-home .miz-hero-copy h1{
  max-width: 740px;
  font-size: clamp(38px, 3.9vw, 56px);
  line-height: 1.02;
  color: #06111f;
  letter-spacing: -.035em;
  text-shadow:
    0 2px 0 rgba(255, 255, 255, .62),
    0 24px 54px rgba(7, 19, 37, .12);
}


/* Auf sehr schmalen Viewports den BR ausblenden — natürliches Wrap */

@media (max-width: 540px) {
  .miz-page-home .miz-hero-copy h1 br {
    display: none;
  }
}
.miz-page-home .miz-hero-copy p{
  max-width: 590px;
  color: rgba(13, 24, 42, .82);
  font-weight: 650;
}
.miz-page-home .miz-hero-copy p strong{
  color: #071325;
  font-weight: 950;
}
.miz-page-home .miz-hero .miz-btn-primary{
  color: #fff;
  background:
    linear-gradient(135deg, #0a84ff 0%, #006edc 55%, #0058c8 100%);
  box-shadow:
    0 18px 40px rgba(10, 132, 255, .30),
    0 0 0 1px rgba(255, 255, 255, .52) inset;
  text-shadow: 0 1px 1px rgba(0, 18, 48, .22);
}
.miz-page-home .miz-hero .miz-btn-ghost{
  color: #071325;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(244, 249, 255, .90));
  border: 1px solid rgba(10, 28, 48, .16);
  box-shadow:
    0 14px 34px rgba(7, 19, 37, .10),
    inset 0 1px 0 rgba(255, 255, 255, .92);
}
.miz-page-home .miz-hero .miz-btn-primary:visited,
.miz-page-home .miz-hero .miz-btn-primary:hover,
.miz-page-home .miz-hero .miz-btn-primary:focus-visible{
  color: #fff;
}
.miz-page-home .miz-hero .miz-btn-ghost:visited,
.miz-page-home .miz-hero .miz-btn-ghost:hover,
.miz-page-home .miz-hero .miz-btn-ghost:focus-visible{
  color: #071325;
}
.miz-page-home .miz-hero .miz-btn i{
  color: currentColor !important;
  opacity: 1;
}
.miz-page-home .miz-hero .miz-btn-primary:hover{
  background:
    linear-gradient(135deg, #1d90ff 0%, #0072e6 55%, #005ecf 100%);
}
.miz-page-home .miz-hero .miz-btn-ghost:hover{
  background:
    linear-gradient(135deg, #fff 0%, rgba(239, 247, 255, .96) 100%);
  border-color: rgba(10, 28, 48, .22);
}
.miz-page-home .miz-hero-proof span,
.miz-page-home .miz-hero-category-nav a{
  border-color: rgba(10, 28, 48, .13);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(246, 250, 255, .72));
  box-shadow:
    0 16px 38px rgba(7, 19, 37, .10),
    inset 0 1px 0 rgba(255, 255, 255, .92);
}
.miz-page-home .miz-hero-proof span{
  color: #43516a;
}
.miz-page-home .miz-hero-category-nav span{
  color: #4a5870;
}
.miz-page-home .miz-hero-panel{
  color: #fff;
  min-height: 0;
  align-self: center;
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  margin-top: clamp(110px, 18%, 200px);
}
.miz-page-home .miz-hero-visual{
  aspect-ratio: 16 / 9;
  min-height: 0;
  border-radius: 26px;
  background: none;
  box-shadow:
    0 38px 78px rgba(2, 8, 19, .22),
    0 14px 32px rgba(2, 8, 19, .14),
    0 4px 10px rgba(2, 8, 19, .08);
}
.miz-page-home .miz-hero-visual::after{
  background: none;
  display: none;
}
.miz-page-home .miz-hero-visual > img{
  min-height: 0;
  height: 100%;
  object-position: 50% 50%;
  filter: saturate(1.06) contrast(1.06) brightness(.96);
  transform: scale(1.006);
}
.miz-page-home .miz-hero-mobile-visual{
  display: none;
}
.miz-page-home .miz-hero-mobile-visual img{
  display: block;
  width: 100%;
  height: auto;
}

.miz-page-home .miz-system-node{
  border-color: rgba(255, 255, 255, .18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .17), rgba(255, 255, 255, .06)),
    rgba(2, 8, 19, .72);
  box-shadow:
    0 20px 46px rgba(0, 0, 0, .32),
    inset 0 1px 0 rgba(255, 255, 255, .14);
}
.miz-page-home .miz-panel-body{
  background:
    radial-gradient(circle at 12% 0%, rgba(37, 211, 102, .13), transparent 31%),
    linear-gradient(135deg, rgba(9, 20, 36, .98), rgba(4, 12, 24, .96));
  border-top: 1px solid rgba(255, 255, 255, .10);
}
.miz-page-home .miz-panel-body h2{
  color: #fff;
}
.miz-page-home .miz-panel-body li{
  color: rgba(247, 251, 255, .84);
}


@media (max-width: 980px) {
  .miz-page-home .miz-hero-panel {
    display: none;
  }

  .miz-page-home .miz-hero-mobile-visual {
    display: block;
    width: min(100%, 680px);
    margin: 22px auto 0;
    padding: 7px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, .30);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, .54), rgba(255, 255, 255, .18)),
      rgba(7, 19, 37, .48);
    box-shadow:
      0 22px 54px rgba(7, 19, 37, .20),
      0 10px 30px rgba(10, 132, 255, .10),
      inset 0 1px 0 rgba(255, 255, 255, .28);
  }

  .miz-page-home .miz-hero-mobile-visual img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: 50% 50%;
    border-radius: 18px;
    box-shadow:
      0 16px 42px rgba(2, 8, 19, .18),
      inset 0 1px 0 rgba(255, 255, 255, .10);
  }

  .miz-page-home .miz-hero-copy h1 {
    max-width: 12em;
  }

  .miz-page-home .miz-hero {
    min-height: 0;
    padding-bottom: 88px;
  }
}


@media (min-width: 981px) {
  .miz-page-home .miz-hero .miz-shell {
    width: min(100% - 88px, 1380px);
  }

  .miz-page-home .miz-hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(420px, .72fr);
    gap: clamp(40px, 4.6vw, 72px);
    align-items: end;
  }

  .miz-page-home .miz-hero-visual {
    margin-top: clamp(40px, 4.5vw, 72px);
  }

  .miz-page-home .miz-hero-category-nav {
    margin-top: 24px;
    max-width: 590px;
    padding: 8px;
    border-radius: 22px;
    border: 1px solid rgba(10, 28, 48, .08);
    background: rgba(255, 255, 255, .42);
    box-shadow:
      0 14px 36px rgba(7, 19, 37, .08),
      inset 0 1px 0 rgba(255, 255, 255, .82);
  }

  .miz-page-home .miz-hero-category-nav a {
    min-height: 56px;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 1px 8px;
    padding: 8px 10px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .miz-page-home .miz-hero-category-nav i {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    font-size: 15px;
  }

  .miz-page-home .miz-hero-category-nav strong {
    font-size: 13px;
  }

  .miz-page-home .miz-hero-category-nav span {
    font-size: 11px;
  }
}


@media (max-width: 680px) {
  .miz-page-home .miz-hero-mobile-visual {
    margin-top: 20px;
    border-radius: 22px;
  }

  .miz-page-home .miz-hero-mobile-visual img {
    border-radius: 16px;
  }
}


/* ═══════════════════════════════════════════════════════════
   HERO-REDESIGN — 3-Step-H1 + Trustbar + Floating Cards
   ═══════════════════════════════════════════════════════════ */


/* ── H1: 3 Verben als Highlight-Spans ── */
.miz-h1-step{
  position: relative;
  display: inline-block;
  font-style: normal;
  color: inherit;
  isolation: isolate;
  white-space: nowrap;
}
.miz-h1-step::after{
  content: "";
  position: absolute;
  left: -.08em;
  right: -.08em;
  bottom: .04em;
  height: .42em;
  z-index: -1;
  border-radius: .18em;
  background: linear-gradient(120deg, rgba(10, 132, 255, .26), rgba(50, 211, 239, .14));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .8s cubic-bezier(.22, .61, .36, 1);
}
.miz-hero-copy.is-visible .miz-h1-step::after{
  transform: scaleX(1);
}
.miz-hero-copy.is-visible .miz-h1-step--1::after{ transition-delay: .25s; }
.miz-hero-copy.is-visible .miz-h1-step--2::after{ transition-delay: .55s; }
.miz-hero-copy.is-visible .miz-h1-step--3::after{ transition-delay: .85s; }


/* Reduced-motion: einfach an, kein Reveal */

@media (prefers-reduced-motion: reduce) {
  .miz-h1-step::after {
    transform: scaleX(1);
    transition: none;
  }
}


/* ── Pill mit Live-Dot ── */
.miz-pill--live{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.miz-pill__dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 8px rgba(37, 211, 102, .8);
  position: relative;
  flex-shrink: 0;
}
.miz-pill__dot::after{
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37, 211, 102, .4);
  animation: miz-pill-ping 2.4s ease-out infinite;
  z-index: -1;
}


@keyframes miz-pill-ping {
  0%   { transform: scale(.6); opacity: .9; }
  100% { transform: scale(2);  opacity: 0; }
}


/* ── Hero-Trustbar ── */


/* ── Floating Cards um das Hero-Visual ── */
.miz-hero-panel{
  position: relative;
}


/* Rating-Card (top-left) */


/* Pin-Card (top-right) */


/* Live-Card (bottom-left) */


/* Mobile: Floating Cards ausblenden (würden überlappen) */

@media (max-width: 900px) {
  .miz-hero-float {
    display: none;
  }
  .miz-hero-trustbar {
    gap: 12px 18px;
  }
  .miz-hero-trustbar__item em {
    display: none;
  }
}


@media (prefers-reduced-motion: reduce) {
  .miz-hero-float,
  .miz-pill__dot::after {
    animation: none !important;
  }
}


/* ═══════════════════════════════════════════════════════════
   DARK MODE + PRINT STYLES
   ═══════════════════════════════════════════════════════════ */


/* ── DARK MODE: aktiv wenn System dark UND keine explizite Override ──
   Aktuelle Dramaturgie: helle Sections bleiben hell, dunkle Sections bleiben dunkel.
   Keine pauschale Umfärbung mehr, sonst entstehen helle Cards mit heller Schrift. */

@media (prefers-color-scheme: dark) {
  :root[data-color-scheme="auto"],
  :root:not([data-color-scheme]) {
    --miz-text:      #0f1728;
    --miz-text-soft: #4b5a6e;
    --miz-muted:     rgba(247, 251, 255, .74);
    --miz-ink:       #f5f9ff;
    --miz-line:      rgba(255, 255, 255, .14);
  }

  /* Light-Sections bleiben hell, auch wenn das Betriebssystem dunkel ist. */
  :root:not([data-color-scheme]) .miz-section-light,
  :root[data-color-scheme="auto"] .miz-section-light {
    background:
      radial-gradient(circle at 15% 0%, rgba(10, 132, 255, .13), transparent 34%),
      radial-gradient(circle at 88% 12%, rgba(0, 217, 255, .08), transparent 30%),
      linear-gradient(180deg, #f7fbff 0%, #eef5fb 54%, #eaf1f8 100%) !important;
    color: #071325;
  }

  :root:not([data-color-scheme]) .miz-section-light h1,
  :root:not([data-color-scheme]) .miz-section-light h2,
  :root:not([data-color-scheme]) .miz-section-light h3 {
    color: #051124;
  }

  :root:not([data-color-scheme]) .miz-section-light p,
  :root:not([data-color-scheme]) .miz-section-light li {
    color: rgba(42, 58, 85, .86);
  }

  :root:not([data-color-scheme]) .miz-section-light .miz-handshake-tile--me :is(h3, strong, p, li, span):not(.miz-btn-icon):not(.miz-handshake-tile__chip),
  :root[data-color-scheme="auto"] .miz-section-light .miz-handshake-tile--me :is(h3, strong, p, li, span):not(.miz-btn-icon):not(.miz-handshake-tile__chip) {
    color: inherit;
  }

  :root:not([data-color-scheme]) .miz-section-light .miz-handshake-tile--me .miz-handshake-tile__chip,
  :root[data-color-scheme="auto"] .miz-section-light .miz-handshake-tile--me .miz-handshake-tile__chip {
    color: #b9d8ff;
  }

  :root:not([data-color-scheme]) #vertrauen .miz-handshake-tile--me,
  :root[data-color-scheme="auto"] #vertrauen .miz-handshake-tile--me,
  :root:not([data-color-scheme]) #vertrauen .miz-handshake-tile--me :is(h3, strong, p, li, span):not(.miz-btn-icon):not(.miz-handshake-tile__chip),
  :root[data-color-scheme="auto"] #vertrauen .miz-handshake-tile--me :is(h3, strong, p, li, span):not(.miz-btn-icon):not(.miz-handshake-tile__chip) {
    color: #eef6ff !important;
  }

  :root:not([data-color-scheme]) #vertrauen .miz-handshake-tile--me .miz-handshake-tile__chip,
  :root[data-color-scheme="auto"] #vertrauen .miz-handshake-tile--me .miz-handshake-tile__chip {
    color: #b9d8ff !important;
  }

  :root:not([data-color-scheme]) #vertrauen .miz-handshake-tile--me li i,
  :root[data-color-scheme="auto"] #vertrauen .miz-handshake-tile--me li i {
    color: #fff !important;
  }

  /* Hero bleibt bewusst einladend hell. */
  :root:not([data-color-scheme]) .miz-hero {
    background:
      radial-gradient(circle at 18% 9%, rgba(10, 132, 255, .13), transparent 31%),
      radial-gradient(circle at 82% 16%, rgba(37, 211, 102, .075), transparent 30%),
      linear-gradient(180deg, #f7fbff 0%, #edf5fc 100%);
  }

  :root:not([data-color-scheme]) .miz-hero-bg {
    filter: saturate(1.05) contrast(1.05);
  }

  /* Normale Cards in hellen Sections bleiben hell. Premium-Cards werden später
     gezielt dunkel gehalten. */
  :root:not([data-color-scheme]) .miz-section-light .miz-service-card,
  :root:not([data-color-scheme]) .miz-section-light .miz-info-card,
  :root:not([data-color-scheme]) .miz-section-light .miz-page-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(242, 247, 252, .90));
    border-color: rgba(10, 28, 48, .12);
    color: #071325;
  }

  /* Hero-Floats lesbar auf dunklem BG */
  :root:not([data-color-scheme]) .miz-hero-float {
    background: linear-gradient(135deg, rgba(20, 34, 58, .92), rgba(7, 18, 36, .86));
    border-color: rgba(255, 255, 255, .12);
  }

  :root:not([data-color-scheme]) .miz-hero-float strong {
    color: #fff;
  }

  :root:not([data-color-scheme]) .miz-hero-float em {
    color: rgba(207, 222, 240, .72);
  }
}


/* ── PRINT STYLES: saubere Druckausgabe ── */

@media print {
  *, *::before, *::after {
    background: transparent !important;
    color: #000 !important;
    text-shadow: none !important;
    box-shadow: none !important;
    filter: none !important;
    animation: none !important;
    transition: none !important;
  }

  body {
    font-family: Georgia, serif;
    font-size: 11pt;
    line-height: 1.5;
  }

  /* Nav + Footer + Floating + animierte Elemente weg */
  .miz-nav,
  .miz-mobile-menu,
  .miz-scroll-progress,
  .miz-skip-link,
  .miz-cursor-glow,
  .miz-footer,
  .miz-hero-float,
  .miz-flow-connector,
  .miz-flow-orb,
  .miz-floater,
  .miz-vcard__beam,
  .miz-pill__dot,
  .miz-broken-lines,
  .miz-section-cta,
  .miz-actions,
  .miz-btn,
  [data-tilt-card],
  video, audio, iframe {
    display: none !important;
  }

  /* Sections: ausreichend Atem für Druck */
  main section {
    page-break-inside: avoid;
    padding: 12mm 0 !important;
    min-height: auto !important;
    break-inside: avoid;
  }

  h1, h2, h3, h4 {
    page-break-after: avoid;
    break-after: avoid;
    color: #000 !important;
  }

  h1 { font-size: 22pt; }
  h2 { font-size: 16pt; }
  h3 { font-size: 13pt; }

  /* Bilder: kleinere Druckgröße */
  img {
    max-width: 80mm !important;
    height: auto !important;
    page-break-inside: avoid;
  }

  /* Links: URL hinter dem Text drucken */
  a[href^="http"]::after,
  a[href^="mailto:"]::after,
  a[href^="tel:"]::after {
    content: " (" attr(href) ")";
    font-size: 9pt;
    color: #555 !important;
  }
  /* Interne Anker nicht ausgeben */
  a[href^="#"]::after,
  a[href^="./"]::after,
  a[href^="/"]::after {
    content: "";
  }

  /* Footer-Info am Ende */
  body::after {
    content: "MIZ OFFICE · Bremen · mizoffice.de";
    display: block;
    margin-top: 12mm;
    padding-top: 4mm;
    border-top: 1px solid #999;
    font-size: 9pt;
    color: #555 !important;
    text-align: center;
  }
}


/* ═══════════════════════════════════════════════════════════════════
   HERO CHECK-STRIP — schwebende Glas-Leiste unten am Hero-Bild
   Ersatz für die drei floating Cards (Bremer Kunden / Ritterhude / online)
   ═══════════════════════════════════════════════════════════════════ */
.miz-hero-checkstrip{
  position: relative;
  margin: -28px auto 0;
  width: fit-content;
  max-width: calc(100% - 24px);
  display: inline-flex;
  align-items: center;
  gap: clamp(14px, 1.6vw, 22px);
  padding: 12px clamp(18px, 1.6vw, 22px);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .9);
  box-shadow:
    0 24px 56px rgba(7, 19, 37, .22),
    0 8px 20px rgba(7, 19, 37, .12),
    inset 0 1px 0 rgba(255, 255, 255, .96);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  z-index: 5;
  white-space: nowrap;
}
.miz-hero-panel{
  display: flex;
  flex-direction: column;
  align-items: center;
  background: none;
  border: 0;
  min-height: 0;
  overflow: visible;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.miz-hero-panel::before{
  display: none;
}
.miz-hero-panel:hover{
  transform: none;
  box-shadow: none;
  border: 0;
}
.miz-hero-checkstrip span{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: clamp(11.5px, 1vw, 13px);
  font-weight: 900;
  letter-spacing: -.005em;
  color: var(--miz-text);
}
.miz-hero-checkstrip i{
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #128c45);
  box-shadow: 0 4px 10px rgba(37, 211, 102, .42);
  font-size: 11px;
  flex-shrink: 0;
}


/* Hero-Visual braucht position:relative damit checkstrip absolute funktioniert */
.miz-hero-visual{
  position: relative;
}


@media (max-width: 540px) {
  .miz-hero-checkstrip {
    margin-top: -18px;
    padding: 10px 14px;
    gap: 10px;
  }
  .miz-hero-checkstrip span {
    font-size: 10.5px;
  }
}


/* ═══════════════════════════════════════════════════════════════════
   GLOBAL: Hintergrund-Animationen aus
   Permanente Loop-Animationen deaktiviert für Performance + Ruhe.
   Hover/Interaktion-Animationen bleiben (sie laufen nur kurz).
   ═══════════════════════════════════════════════════════════════════ */


/* ── Permanente Deko-Animationen KOMPLETT aus (kein Hover-Bezug) ── */
.miz-flow-orb,
.miz-flow-step::before,
.miz-flow-step .miz-flow-icon i,
.miz-flow-complete__halo,
.miz-kontakt__submit-aurora,
.miz-phone3d,
.miz-profile__online::after,
.miz-pill--live .miz-pill__dot::after,
.miz-pill__dot::after{
  animation: none !important;
}


/* ── PROBLEM-CARDS: Animation pausiert, läuft NUR bei Card-Hover ── */
.miz-floater{
  animation-play-state: paused !important;
}
.miz-info-card:hover .miz-floater,
.miz-info-card:hover .miz-mapdot,
.miz-info-card:hover .miz-vcard,
.miz-info-card:hover .miz-broken-lines,
.miz-info-card:hover .miz-chip,
.miz-info-card:hover .miz-vcard__stars i{
  animation-play-state: running !important;
}


/* ── LÖSUNG-CARDS: Mockup-Animation läuft NUR bei Card-Hover ── */
.miz-service-card--premium::before,
.miz-mockup-map__pin{
  animation-play-state: paused !important;
}
.miz-service-card--premium:hover::before,
.miz-service-card--premium:hover .miz-mockup-map__pin,


/* ── HOVER-HERVORHEBUNG: gehoverte Card groß, Geschwister gedimmt ── */
.miz-card-grid-3:has(.miz-info-card:hover) .miz-info-card:not(:hover){
  opacity: .5;
  transform: scale(.97);
  filter: saturate(.7);
}
.miz-card-grid-3 .miz-info-card{
  transition: transform .45s var(--miz-ease), opacity .45s var(--miz-ease), filter .45s var(--miz-ease), box-shadow .45s var(--miz-ease);
}
.miz-card-grid-3 .miz-info-card:hover{
  transform: scale(1.035);
  z-index: 3;
}
.miz-service-grid--premium:has(.miz-service-card--premium:hover) .miz-service-card--premium:not(:hover){
  opacity: .5;
  transform: scale(.97);
  filter: saturate(.7);
}
.miz-service-grid--premium .miz-service-card--premium:hover{
  transform: translateY(-6px) scale(1.025);
  z-index: 3;
}


/* Caret-Blink bleibt aktiv (funktionales UX-Signal im Formular) */


/* ═══════════════════════════════════════════════════════════════════
   ABLAUF — Apple Premium Stagger-Reveal
   Multi-Layer-Choreographie: Blur+Scale+Lift+Glow pro Element
   ═══════════════════════════════════════════════════════════════════ */


/* SECTION-HEAD — Cinematic-Reveal */


/* Eyebrow: Pop-In mit Bounce + Glow-Bloom */
.miz-section-head .miz-pill[data-reveal]{
  opacity: 0;
  transform: translateY(-12px) scale(.7);
  filter: blur(8px);
  transition:
    opacity .56s cubic-bezier(.22, 1, .36, 1),
    transform .68s cubic-bezier(.22, 1.4, .36, 1),
    filter .56s ease-out;
}
.miz-section-head .miz-pill[data-reveal].is-visible{
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}


/* H2: Smooth Lift (letter-spacing-Anim entfernt — repaint pro frame teuer) */
.miz-section-head h2[data-reveal]{
  opacity: 0;
  transform: translateY(40px);
  filter: blur(6px);
  transition:
    opacity .9s cubic-bezier(.22, 1, .36, 1) .15s,
    transform .9s cubic-bezier(.22, 1, .36, 1) .15s,
    filter .8s ease-out .15s;
}
.miz-section-head h2[data-reveal].is-visible{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}


/* Subline: Fade-Up mit Delay */
.miz-section-head p[data-reveal]{
  opacity: 0;
  transform: translateY(24px);
  filter: blur(4px);
  transition:
    opacity .8s cubic-bezier(.22, 1, .36, 1) .35s,
    transform .8s cubic-bezier(.22, 1, .36, 1) .35s,
    filter .7s ease-out .35s;
}
.miz-section-head p[data-reveal].is-visible{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}


/* FLOW-CARDS — Premium Reveal mit Multi-Layer-Choreographie */
.miz-flow .miz-flow-step[data-reveal]{
  opacity: 0;
  transform: translate3d(0, 48px, 0) scale(.92);
  filter: blur(8px);
  transition:
    opacity .72s cubic-bezier(.22, 1, .36, 1),
    transform .82s cubic-bezier(.22, 1.05, .36, 1),
    filter .56s cubic-bezier(.22, 1, .36, 1);
  /* will-change wird via JS gesetzt nur während Animation, sonst kein permanenter GPU-Layer */
}


/* Kein Stagger-Delay mehr — Cards stehen untereinander
   und werden beim Scrollen einzeln vom IntersectionObserver geweckt */
.miz-flow .miz-flow-step[data-reveal].is-visible{
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}


/* Pro Step: Innere Elemente animieren mit eigenen Sub-Delays */


/* Number-Badge: Pop-In (text-shadow-Anim entfernt — text-repaint teuer) */
.miz-flow .miz-flow-step[data-reveal] .miz-flow-num{
  opacity: 0;
  transform: scale(.5) translate3d(0, -16px, 0);
  transition:
    opacity .56s cubic-bezier(.22, 1.6, .36, 1) .15s,
    transform .68s cubic-bezier(.22, 1.6, .36, 1) .15s;
}


/* Inner-Delays bleiben gleich pro Card (jede Card hat eigene Cascade) */
.miz-flow .miz-flow-step[data-reveal].is-visible .miz-flow-num{
  opacity: 1;
  transform: scale(1) translate3d(0, 0, 0);
}


/* Icon: Spin-In (box-shadow ist final, kein Animation-Repaint) */
.miz-flow .miz-flow-step[data-reveal] .miz-flow-icon{
  opacity: 0;
  transform: scale(.4) rotate(-20deg);
  transition:
    opacity .56s cubic-bezier(.22, 1.6, .36, 1) .25s,
    transform .72s cubic-bezier(.22, 1.6, .36, 1) .25s;
}


/* Icon-Cascade ist pro Card identisch */
.miz-flow .miz-flow-step[data-reveal].is-visible .miz-flow-icon{
  opacity: 1;
  transform: scale(1) rotate(0deg);
}


/* Kicker: Slide-Right */
.miz-flow .miz-flow-step[data-reveal] .miz-flow-kicker{
  opacity: 0;
  transform: translateX(-12px);
  transition:
    opacity .56s cubic-bezier(.22, 1, .36, 1) .35s,
    transform .56s cubic-bezier(.22, 1, .36, 1) .35s;
}


/* Kicker-Delay nur pro Card-Inner, kein horizontaler Stagger */
.miz-flow .miz-flow-step[data-reveal].is-visible .miz-flow-kicker{
  opacity: 1;
  transform: translateX(0);
}


/* Title: Mask-Reveal mit Lift */
.miz-flow .miz-flow-step[data-reveal] h3{
  opacity: 0;
  transform: translateY(16px);
  filter: blur(3px);
  transition:
    opacity .68s cubic-bezier(.22, 1, .36, 1) .42s,
    transform .68s cubic-bezier(.22, 1, .36, 1) .42s,
    filter .56s ease-out .42s;
}


/* H3-Delay nur card-intern */
.miz-flow .miz-flow-step[data-reveal].is-visible h3{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}


/* Body Text + Detail-List: zarter Fade-In */
.miz-flow .miz-flow-step[data-reveal] p,
.miz-flow .miz-flow-step[data-reveal] .miz-flow-detail{
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity .68s cubic-bezier(.22, 1, .36, 1) .52s,
    transform .68s cubic-bezier(.22, 1, .36, 1) .52s;
}


/* Body-Delay nur card-intern */
.miz-flow .miz-flow-step[data-reveal].is-visible p,
.miz-flow .miz-flow-step[data-reveal].is-visible .miz-flow-detail{
  opacity: 1;
  transform: translateY(0);
}


/* Connector ausgeblendet — bei vertikalem Stack nicht nötig */
.miz-flow .miz-flow-connector{
  display: none;
}


/* Fertig-State delay */
.miz-flow-complete{
  transition-delay: 300ms;
}


/* Reduced-Motion: alle Effekte aus, nur Opacity-Fade */

@media (prefers-reduced-motion: reduce) {
  .miz-flow .miz-flow-step[data-reveal],
  .miz-flow .miz-flow-step[data-reveal] *,
  .miz-section-head [data-reveal] {
    transform: none !important;
    filter: none !important;
    transition: opacity .3s ease !important;
  }
}


/* ── FERTIG-State: erscheint nach Step 4 ── */
.miz-flow-complete{
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 2.4vw, 32px);
  align-items: center;
  margin: clamp(40px, 4vw, 64px) auto 0;
  max-width: 920px;
  padding: clamp(28px, 3vw, 40px) clamp(28px, 3.4vw, 44px);
  border-radius: clamp(22px, 2.2vw, 28px);
  border: 1px solid rgba(37, 211, 102, .22);
  background:
    linear-gradient(135deg, rgba(37, 211, 102, .14), rgba(10, 132, 255, .08)),
    rgba(7, 19, 37, .68);
  box-shadow:
    0 36px 78px rgba(0, 0, 0, .36),
    0 0 64px rgba(37, 211, 102, .14),
    inset 0 1px 0 rgba(255, 255, 255, .12);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  opacity: 0;
  transform: translateY(40px) scale(.96);
  transition:
    opacity .8s var(--miz-ease),
    transform .8s cubic-bezier(.22, 1, .36, 1);
}
.miz-flow-complete.is-complete{
  opacity: 1;
  transform: translateY(0) scale(1);
}
.miz-flow-complete__halo{
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(37, 211, 102, .42) 60deg,
    transparent 120deg,
    rgba(10, 132, 255, .38) 200deg,
    transparent 260deg,
    rgba(37, 211, 102, .42) 320deg,
    transparent 360deg
  );
  filter: blur(18px);
  opacity: 0;
  z-index: -1;
  transition: opacity 1.2s var(--miz-ease) .3s;
  animation: miz-flow-complete-rotate 12s linear infinite;
  animation-play-state: paused;
}
.miz-flow-complete.is-complete .miz-flow-complete__halo{
  opacity: 1;
  animation-play-state: running;
}


@keyframes miz-flow-complete-rotate {
  to { transform: rotate(360deg); }
}
.miz-flow-complete__badge{
  width: clamp(68px, 7vw, 88px);
  height: clamp(68px, 7vw, 88px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #128c45);
  box-shadow:
    0 18px 38px rgba(37, 211, 102, .42),
    inset 0 1px 0 rgba(255, 255, 255, .28);
  flex-shrink: 0;
  transform: scale(.6);
  transition: transform .8s cubic-bezier(.22, 1.4, .36, 1) .4s;
}
.miz-flow-complete.is-complete .miz-flow-complete__badge{
  transform: scale(1);
}
.miz-flow-complete__badge svg{
  width: 60%;
  height: 60%;
}
.miz-flow-complete__body{
  display: grid;
  gap: 14px;
}
.miz-flow-complete__eyebrow{
  display: inline-block;
  width: fit-content;
  padding: 5px 12px;
  border-radius: 999px;
  color: #25d366;
  background: rgba(37, 211, 102, .14);
  border: 1px solid rgba(37, 211, 102, .32);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.miz-flow-complete__title{
  margin: 0;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: -.022em;
  color: #fff;
}
.miz-flow-complete__checks{
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.miz-flow-complete__checks li{
  display: grid;
  grid-template-columns: 28px 1fr;
  grid-template-rows: auto auto;
  gap: 2px 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
}
.miz-flow-complete__checks i{
  grid-row: span 2;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #128c45);
  font-size: 14px;
  box-shadow: 0 6px 14px rgba(37, 211, 102, .32);
}
.miz-flow-complete__checks strong{
  color: #fff;
  font-size: 13px;
  font-weight: 950;
}
.miz-flow-complete__checks span{
  color: rgba(247, 251, 255, .62);
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.3;
}


@media (max-width: 720px) {
  .miz-flow-complete {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .miz-flow-complete__badge {
    margin: 0 auto;
  }
  .miz-flow-complete__eyebrow {
    margin: 0 auto;
  }
  .miz-flow-complete__checks {
    grid-template-columns: 1fr;
  }
  .miz-flow-complete__checks li {
    text-align: left;
  }
}


@media (prefers-reduced-motion: reduce) {
  .miz-flow--scrollmagic .miz-flow-step {
    transition: none;
  }
  .miz-flow-complete {
    transition: opacity .3s ease;
  }
  .miz-flow-complete__halo {
    animation: none;
  }
}


/* ═══════════════════════════════════════════════════════════════════
   FAQ-LIST — Premium-Liste auf Startseite (3 wichtigste Fragen)
   ═══════════════════════════════════════════════════════════════════ */
.miz-faq-list{
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 880px;
  display: grid;
  gap: 12px;
}
.miz-faq-row{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(135deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  box-shadow:
    0 12px 32px rgba(0, 0, 0, .22),
    inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  transition:
    border-color .35s var(--miz-ease),
    box-shadow .35s var(--miz-ease),
    background .35s var(--miz-ease);
}
.miz-faq-row:hover{
  border-color: rgba(10, 132, 255, .32);
  box-shadow:
    0 20px 44px rgba(0, 0, 0, .28),
    0 0 28px rgba(10, 132, 255, .14),
    inset 0 1px 0 rgba(255, 255, 255, .12);
  background: linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
}
.miz-faq-row[open]{
  border-color: rgba(10, 132, 255, .38);
  background: linear-gradient(135deg, rgba(10, 132, 255, .10), rgba(10, 132, 255, .03));
  box-shadow:
    0 24px 52px rgba(0, 0, 0, .32),
    0 0 36px rgba(10, 132, 255, .18),
    inset 0 1px 0 rgba(255, 255, 255, .14);
}
.miz-faq-row summary{
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  outline: none;
}
.miz-faq-row summary::-webkit-details-marker{
  display: none;
}


/* Number-Badge */
.miz-faq-row__num{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--miz-blue), var(--miz-blue-2));
  box-shadow: 0 4px 10px rgba(10, 132, 255, .32);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .04em;
  font-feature-settings: "tnum";
}


/* Icon-Tile */
.miz-faq-row__icon{
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--miz-blue);
  background: linear-gradient(135deg, rgba(10, 132, 255, .16), rgba(50, 211, 239, .06));
  border: 1px solid rgba(10, 132, 255, .22);
  font-size: 18px;
  flex-shrink: 0;
  transition: transform .35s var(--miz-ease);
}
.miz-faq-row:hover .miz-faq-row__icon,
.miz-faq-row[open] .miz-faq-row__icon{
  transform: scale(1.06) rotate(-3deg);
}
.miz-faq-row__title{
  color: #fff;
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 850;
  letter-spacing: -.01em;
  line-height: 1.35;
}


/* Toggle-Pfeil */
.miz-faq-row__toggle{
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  flex-shrink: 0;
  transition: transform .42s var(--miz-ease), background .35s var(--miz-ease);
}
.miz-faq-row__toggle::before,
.miz-faq-row__toggle::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transform: translate(-50%, -50%);
  transition: transform .42s var(--miz-ease);
}
.miz-faq-row__toggle::after{
  transform: translate(-50%, -50%) rotate(90deg);
}
.miz-faq-row[open] .miz-faq-row__toggle{
  background: linear-gradient(135deg, var(--miz-blue), var(--miz-blue-2));
  border-color: transparent;
  transform: rotate(180deg);
}
.miz-faq-row[open] .miz-faq-row__toggle::after{
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}


/* Body mit Smooth-Expand */
.miz-faq-row__body{
  padding: 0 22px 20px 102px;
}
.miz-faq-row__body p{
  margin: 0;
  color: rgba(247, 251, 255, .78);
  font-size: 14.5px;
  line-height: 1.6;
  font-weight: 600;
}


@media (max-width: 720px) {
  .miz-faq-row summary {
    grid-template-columns: auto auto 1fr;
    gap: 12px;
    padding: 16px;
  }
  .miz-faq-row__toggle {
    grid-column: 1 / -1;
    justify-self: flex-end;
    margin-top: -36px;
  }
  .miz-faq-row__body {
    padding: 0 16px 18px;
  }
  .miz-faq-row__title {
    grid-column: 3 / -1;
  }
}


/* ═══════════════════════════════════════════════════════════════════
   PHONE-CLEAN — Premium-iPhone-Mockup (Problem-Card 01)
   Reines CSS/SVG, kein PNG. Konsistent mit Social-Card-Mockup.
   ═══════════════════════════════════════════════════════════════════ */


/* Subtle Shine-Layer */


@media (prefers-reduced-motion: reduce) {
  .miz-phone-clean {
    transform: none;
  }
}


/* ═══════════════════════════════════════════════════════════════════
   GLOBAL FOCUS-VISIBLE — a11y baseline für alle Interaktiven
   Brand-Outline mit Glow, nur bei Keyboard-Focus (nicht Click)
   ═══════════════════════════════════════════════════════════════════ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible{
  outline: 2px solid var(--miz-blue);
  outline-offset: 3px;
  border-radius: 6px;
  box-shadow:
    0 0 0 4px rgba(10, 132, 255, .14),
    0 4px 12px rgba(10, 132, 255, .12);
  transition: outline-offset .15s ease, box-shadow .15s ease;
}


/* Inputs/Textareas haben eigenen Brand-Glow im Form — Outline weicher */
.miz-kontakt__input:focus-visible{
  outline: 0;
  box-shadow:
    0 0 0 4px rgba(10, 132, 255, .14),
    0 16px 36px rgba(10, 132, 255, .10),
    inset 0 1px 0 rgba(255, 255, 255, .98);
}


/* Cards mit data-spotlight: Outline-Offset etwas weiter weg */
[data-spotlight]:focus-visible,
.miz-service-card:focus-visible,
.miz-outcome:focus-visible{
  outline-offset: 6px;
  border-radius: 24px;
}


/* ═══════════════════════════════════════════════════════════════════
   SERVICE-MOCKUPS — realistic UI statt generic stock
   Browser-Screenshot, Google-Maps-Card, Phone-Feed
   ═══════════════════════════════════════════════════════════════════ */
.miz-service-mockup{
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% -20%, rgba(10, 132, 255, .12), transparent 60%),
    linear-gradient(180deg, #eef4fa 0%, #dde7f3 100%);
  border-bottom: 1px solid rgba(10, 28, 48, .06);
  height: 260px;          /* fix: alle 3 Mockups gleich hoch → Text aligned */
  overflow: hidden;
}


/* UI-Mockups (Browser/Karte/Handy) sind gestochene Grafiken, keine Fotos:
   die weißen Foto-Glas-Veils (::before Radial-Weiß + ::after .88-Verlauf)
   verschleierten v.a. den hellen Browser-Mockup → wirkte halbtransparent. */
.miz-service-media.miz-service-mockup::before{
  background: none;
  border-color: transparent;
}
.miz-service-media.miz-service-mockup::after{
  background: linear-gradient(135deg, rgba(255, 255, 255, .14), transparent 30%);
}


/* Card 3: Social-Post-Karte mit echtem Stockbild statt Phone-Mockup.
   Füllt die Medienfläche, gut lesbar, kein verschwendeter Rand. */
.miz-service-mockup--social{
  padding: 0;
}
.miz-mockup-social{
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-align: left;
}
.miz-mockup-social__head{
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
}
.miz-mockup-social__avatar{
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 950;
  color: #fff;
  background: linear-gradient(135deg, #f58529, #dd2a7b 52%, #8134af);
  box-shadow: 0 4px 10px rgba(221, 42, 123, .32);
}
.miz-mockup-social__meta{
  display: grid;
  gap: 1px;
  line-height: 1.1;
}
.miz-mockup-social__meta strong{
  font-size: 12px;
  font-weight: 800;
  color: #14181f;
}
.miz-mockup-social__meta em{
  font-style: normal;
  font-size: 10px;
  font-weight: 600;
  color: #8a93a3;
}
.miz-mockup-social__more{
  margin-left: auto;
  display: inline-flex;
  gap: 2.5px;
}
.miz-mockup-social__more i{
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #44505f;
}
.miz-mockup-social__media{
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  background: #0c1828;
}
.miz-mockup-social__media img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.001);
}
.miz-mockup-social__live{
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .02em;
  color: #fff;
  background: rgba(7, 19, 37, .58);
  backdrop-filter: blur(6px) saturate(140%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
}
.miz-mockup-social__live::first-letter{ color: #ff5a5f; }
.miz-mockup-social__bar{
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 9px 12px 4px;
}
.miz-mockup-social__bar svg{
  width: 19px;
  height: 19px;
  color: #14181f;
}
.miz-mockup-social__heart svg{ filter: drop-shadow(0 2px 5px rgba(237, 73, 86, .4)); }
.miz-mockup-social__save{ margin-left: auto; font-style: normal; display: inline-flex; }
.miz-mockup-social__text{
  display: grid;
  gap: 2px;
  padding: 0 12px 11px;
}
.miz-mockup-social__text > strong{
  font-size: 11.5px;
  font-weight: 800;
  color: #14181f;
}
.miz-mockup-social__text > span{
  font-size: 11px;
  line-height: 1.35;
  color: #3a4452;
}
.miz-mockup-social__text > span strong{
  color: #14181f;
  font-weight: 800;
}


/* Phone-Mockup (Card 3) skaliert damit es in die 260px passt */


/* Region-Label ausgeblendet: die Mockups (Browser-URL, Google-Karte,
   Instagram-Profil) zeigen den Bremen-Bezug bereits selbst und das
   Floating-Pill überlappte Browser-Leiste + Phone-Topbar. */
.miz-service-mockup .miz-service-region{
  display: none;
}


/* ── 1. Website-Mockup (Browser-Frame) ───────────────────── */
.miz-mockup-browser{
  width: 92%;
  border-radius: 13px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .9);
  box-shadow:
    0 34px 70px -18px rgba(7, 19, 37, .42),
    0 12px 26px rgba(7, 19, 37, .14),
    0 0 0 1px rgba(10, 28, 48, .06);
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.miz-mockup-browser__bar{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: linear-gradient(180deg, #f1f4f8, #e4eaf1);
  border-bottom: 1px solid rgba(10, 28, 48, .08);
}
.miz-mockup-browser__dots{
  display: inline-flex;
  gap: 5px;
}
.miz-mockup-browser__dots i{
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(10, 28, 48, .18);
}
.miz-mockup-browser__dots i:nth-child(1){ background: #ff6058; }
.miz-mockup-browser__dots i:nth-child(2){ background: #ffbd2d; }
.miz-mockup-browser__dots i:nth-child(3){ background: #27c93f; }
.miz-mockup-browser__url{
  flex: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(10, 28, 48, .06);
  font-size: 10.5px;
  font-weight: 700;
  color: rgba(10, 28, 48, .68);
}
.miz-mockup-browser__url svg{
  width: 11px;
  height: 11px;
  color: #25a05c;
}


/* Website-Mockup bekommt mehr Platz als die anderen (echte Homepage) */
.miz-service-mockup--website{ padding: 15px 14px; }
.miz-mockup-browser__hero{
  padding: 9px 10px 11px;
  background: #fff;
}
.miz-mockup-browser__nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.miz-mockup-browser__logo{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: -.02em;
  color: #0a3d8c;
}
.miz-mockup-browser__mark{
  width: 17px;
  height: 17px;
  border-radius: 5px;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 950;
  color: #fff;
  background: linear-gradient(135deg, var(--miz-blue), var(--miz-blue-2));
  box-shadow: 0 3px 7px rgba(10, 132, 255, .34);
}
.miz-mockup-browser__links{
  display: inline-flex;
  gap: 10px;
}
.miz-mockup-browser__links b{
  font-size: 9px;
  font-weight: 700;
  color: rgba(10, 28, 48, .55);
}
.miz-mockup-browser__links b:first-child{ color: var(--miz-blue); }
.miz-mockup-browser__banner{
  position: relative;
  height: 82px;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(7, 19, 37, .2);
}
.miz-mockup-browser__banner-art{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.miz-mockup-browser__banner-copy{
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  padding: 0 13px;
  background: linear-gradient(90deg, rgba(3, 14, 30, .72) 0%, rgba(3, 14, 30, .32) 62%, transparent 100%);
}
.miz-mockup-browser__banner-copy em{
  font-style: normal;
  font-size: 7.5px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #8cc7ff;
}
.miz-mockup-browser__banner-copy strong{
  font-size: 13px;
  font-weight: 950;
  line-height: 1.06;
  letter-spacing: -.02em;
  color: #fff;
  max-width: 78%;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .32);
}
.miz-mockup-browser__btn{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
}
.miz-mockup-browser__btn svg{ width: 11px; height: 11px; }
.miz-mockup-browser__btn--primary{
  color: #fff;
  background: linear-gradient(135deg, var(--miz-blue), #1aa7ff);
  box-shadow: 0 5px 13px rgba(10, 132, 255, .46);
  margin-top: 2px;
}
.miz-mockup-browser__services{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-top: 8px;
}
.miz-mockup-browser__services span{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 6px 2px;
  border-radius: 7px;
  font-size: 8px;
  font-weight: 800;
  color: #2a3a52;
  background: linear-gradient(180deg, #f3f7fd, #e8f0fa);
  border: 1px solid rgba(10, 28, 48, .06);
}
.miz-mockup-browser__services svg{
  width: 15px;
  height: 15px;
  color: var(--miz-blue);
}
.miz-mockup-browser__stars{
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}
.miz-mockup-browser__stars svg{
  width: 44px;
  height: 9px;
}
.miz-mockup-browser__stars em{
  font-style: normal;
  font-size: 9px;
  font-weight: 800;
  color: rgba(10, 28, 48, .62);
}


/* ── 2. Google-Maps-Mockup ───────────────────────────────── */
.miz-mockup-map{
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 220px;
  border-radius: 13px;
  overflow: hidden;
  box-shadow:
    0 34px 70px -18px rgba(7, 19, 37, .4),
    0 12px 26px rgba(7, 19, 37, .12),
    0 0 0 1px rgba(10, 28, 48, .05);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.miz-mockup-map__bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.miz-mockup-map__pin{
  position: absolute;
  top: 12%;
  left: 50%;
  margin-left: -15px;
  width: 30px;
  height: 38px;
  z-index: 2;
  animation: miz-mockup-pin-pulse 2.4s ease-in-out infinite;
}
.miz-mockup-map__pin svg{
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 6px 12px rgba(234, 67, 53, .45));
}


@keyframes miz-mockup-pin-pulse {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}
.miz-mockup-map__card{
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(10, 28, 48, .08);
  box-shadow: 0 16px 32px rgba(7, 19, 37, .18);
  z-index: 3;
}
.miz-mockup-map__card-head{
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.miz-mockup-map__icon{
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(135deg, #ea4335, #c5221f);
  font-size: 14px;
  font-weight: 950;
  flex-shrink: 0;
}
.miz-mockup-map__card-head strong{
  display: block;
  font-size: 12.5px;
  font-weight: 950;
  color: var(--miz-text);
  line-height: 1.2;
}
.miz-mockup-map__card-head em{
  display: block;
  font-style: normal;
  font-size: 10.5px;
  font-weight: 700;
  color: rgba(10, 28, 48, .58);
  margin-top: 1px;
}
.miz-mockup-map__stars{
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}
.miz-mockup-map__stars svg{
  width: 48px;
  height: 10px;
}
.miz-mockup-map__stars span{
  font-size: 10.5px;
  font-weight: 800;
  color: var(--miz-text);
}
.miz-mockup-map__open{
  font-style: normal;
  font-size: 10px;
  font-weight: 900;
  color: #128c45;
  margin-left: auto;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(37, 211, 102, .14);
}
.miz-mockup-map__actions{
  display: flex;
  gap: 6px;
  margin-top: 10px;
}
.miz-mockup-map__btn{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 900;
  color: var(--miz-blue);
  background: rgba(10, 132, 255, .08);
  border: 1px solid rgba(10, 132, 255, .14);
}
.miz-mockup-map__btn svg{
  width: 11px;
  height: 11px;
}
.miz-mockup-map__btn--primary{
  color: #fff;
  background: var(--miz-blue);
  border-color: var(--miz-blue);
  box-shadow: 0 4px 10px rgba(10, 132, 255, .32);
}


/* ── 3. Phone-Mockup mit Instagram-Feed ──────────────────── */
.miz-mockup-phone{
  position: relative;
  width: 162px;
  border-radius: 22px;
  background: #0c1828;
  padding: 7px;
  box-shadow:
    0 26px 56px rgba(7, 19, 37, .22),
    0 8px 20px rgba(7, 19, 37, .12);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}


@keyframes miz-mockup-heart {
  0%, 100% { transform: scale(1); }
  10%      { transform: scale(1.22); }
  20%      { transform: scale(1); }
}


/* ── Hover / Reveal-Effekt für die Mockups ──────────────── */
.miz-service-card:hover .miz-service-mockup .miz-mockup-browser,

.miz-mockup-browser,
.miz-mockup-phone{
  transition: transform .5s var(--miz-ease);
}


@media (prefers-reduced-motion: reduce) {
  .miz-mockup-map__pin,
  .miz-mockup-phone__heart {
    animation: none;
  }
  .miz-service-card:hover .miz-mockup-browser,
  .miz-service-card:hover .miz-mockup-phone {
    transform: none;
  }
}


@media (max-width: 540px) {
  .miz-mockup-phone {
    width: 140px;
  }
}


/* ═══════════════════════════════════════════════════════════════════
   SERVICE-CARD — PREMIUM LAYOUT
   Cleanere Hierarchie: Mockup → Number+Tag → Title → Copy → CTA
   ═══════════════════════════════════════════════════════════════════ */
.miz-service-grid--premium{
  gap: clamp(20px, 2.4vw, 32px);
}
.miz-service-card--premium{
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: auto;
  padding: 0;
  border-radius: 26px;
  border: 1px solid rgba(10, 28, 48, .08);
  background:
    linear-gradient(180deg, #fff, #f7faff);
  box-shadow:
    0 28px 70px rgba(7, 19, 37, .10),
    0 8px 22px rgba(10, 60, 120, .05),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  display: flex;
  flex-direction: column;
  transition:
    transform .42s var(--miz-ease),
    box-shadow .42s var(--miz-ease),
    border-color .42s var(--miz-ease);
}


/* Accent-Stripe oben — animiert bei Hover */
.miz-service-card--premium::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--miz-blue), var(--miz-blue-2), var(--miz-blue));
  background-size: 200% 100%;
  background-position: 0% 0%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--miz-ease);
  z-index: 3;
}
.miz-service-card--premium:hover{
  transform: translateY(-6px);
  border-color: rgba(10, 132, 255, .28);
  box-shadow:
    0 44px 110px rgba(7, 19, 37, .16),
    0 0 50px rgba(10, 132, 255, .14),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}
.miz-service-card--premium:hover::before{
  transform: scaleX(1);
  animation: miz-card-stripe-shimmer 2.4s linear infinite .5s;
}


@keyframes miz-card-stripe-shimmer {
  to { background-position: -200% 0%; }
}


/* Mockup-Area — kein negativ-margin mehr, eigene Layout-Insel */
.miz-service-card--premium .miz-service-media{
  position: relative;
  margin: 0;
  height: 260px;          /* fix statt min-height → alle 3 Cards gleich */
  border-radius: 0;
  border-bottom: 1px solid rgba(10, 28, 48, .06);
  overflow: hidden;
}


/* Result-Row darunter (Besucher versteht → fragt an): ausblenden —
   das Mockup zeigt es bereits visuell, doppelt wäre Lärm */
.miz-service-card--premium .miz-service-explain{
  display: none;
}


/* Großer Tabler-Icon (ti-browser / ti-brand-*) ausblenden —
   konkurriert mit dem Mockup */
.miz-service-card--premium > i.ti{
  display: none;
}


/* Body wrapper — wenn nicht vorhanden, dann Card-Children */
.miz-service-card--premium > :is(.miz-service-tag, h3, p, a:not(.miz-btn)){
  margin-left: clamp(22px, 2.4vw, 30px);
  margin-right: clamp(22px, 2.4vw, 30px);
}


/* Tag mit Nummer-Präfix via data-num */
.miz-service-card--premium .miz-service-tag{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px 7px 9px;
  margin-top: clamp(22px, 2.4vw, 30px);
  border-radius: 999px;
  color: var(--miz-blue);
  background: linear-gradient(135deg, rgba(10, 132, 255, .12), rgba(50, 211, 239, .06));
  border: 1px solid rgba(10, 132, 255, .22);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  width: fit-content;
}
.miz-service-card--premium .miz-service-tag::before{
  content: attr(data-num) "·";
}


/* JS-free fallback: data-num kommt vom parent — daher via attr-Selector */
.miz-service-card--premium[data-num="01"] .miz-service-tag::before{ content: "01 ·"; }
.miz-service-card--premium[data-num="02"] .miz-service-tag::before{ content: "02 ·"; }
.miz-service-card--premium[data-num="03"] .miz-service-tag::before{ content: "03 ·"; }
.miz-service-card--premium .miz-service-tag::before{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--miz-blue), var(--miz-blue-2));
  color: #fff;
  font-size: 10.5px;
  font-weight: 950;
  letter-spacing: .04em;
  box-shadow: 0 4px 10px rgba(10, 132, 255, .32);
}


/* Title — Apple-Display-Niveau */
.miz-service-card--premium h3{
  margin: 14px 0 10px;
  font-size: clamp(22px, 2.2vw, 26px);
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: -.025em;
  color: var(--miz-text);
}
.miz-service-card--premium p{
  margin: 0 0 22px;
  font-size: 14.5px;
  line-height: 1.62;
  color: var(--miz-text-soft);
  font-weight: 700;
}


/* CTA-Link als Premium-Pill am Card-Fuß */
.miz-service-card--premium a:not(.miz-btn){
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  margin-bottom: clamp(22px, 2.4vw, 30px);
  padding: 11px 18px;
  border-radius: 999px;
  color: var(--miz-text);
  background: rgba(255, 255, 255, .8);
  border: 1px solid rgba(10, 28, 48, .10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .96);
  font-size: 13.5px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: -.005em;
  width: fit-content;
  transition: transform .3s var(--miz-ease), background .3s var(--miz-ease), border-color .3s var(--miz-ease), color .3s var(--miz-ease);
}
.miz-service-card--premium a:not(.miz-btn)::after{
  content: "→";
  display: inline-block;
  font-weight: 950;
  font-size: 15px;
  line-height: 1;
  transition: transform .3s var(--miz-ease);
}
.miz-service-card--premium a:not(.miz-btn):hover{
  color: #fff;
  background: linear-gradient(135deg, var(--miz-blue), var(--miz-blue-2));
  border-color: transparent;
  box-shadow:
    0 14px 28px rgba(10, 132, 255, .32),
    inset 0 1px 0 rgba(255, 255, 255, .22);
  transform: translateY(-1px);
}
.miz-service-card--premium a:not(.miz-btn):hover::after{
  transform: translateX(4px);
}


/* Mockup-spezifischer Subtler-Glow bei Card-Hover */
.miz-service-card--premium:hover .miz-service-media{
  background-position: 50% 30%;
}


/* Reduced-Motion */

@media (prefers-reduced-motion: reduce) {
  .miz-service-card--premium {
    transition: none;
  }
  .miz-service-card--premium:hover {
    transform: none;
  }
  .miz-service-card--premium:hover::before {
    animation: none;
  }
  .miz-service-card--premium a:not(.miz-btn):hover {
    transform: none;
  }
}


/* ═══════════════════════════════════════════════════════════════════
   KONTAKT — WENIGER IST MEHR
   Eyebrow → Headline → Subline → 3 Outcome-Cards → Clean-Form → Zitat
   Premium-minimal. Apple-tvOS-Animation. Vertrauen statt Verwirrung.
   ═══════════════════════════════════════════════════════════════════ */
.miz-kontakt{
  display: grid;
  gap: clamp(52px, 6vw, 84px);
}


/* ── Lead: Eyebrow + Headline + Subline ──────────────────── */
.miz-kontakt__lead{
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 18px;
  justify-items: center;
}
.miz-kontakt__eyebrow{
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  color: var(--miz-blue);
  background: rgba(10, 132, 255, .08);
  border: 1px solid rgba(10, 132, 255, .18);
  font-size: 11.5px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.miz-kontakt__title{
  margin: 0;
  font-size: clamp(44px, 6.4vw, 76px);
  font-weight: 950;
  line-height: 1.0;
  letter-spacing: -.04em;
  color: var(--miz-text);
}
.miz-kontakt__accent{
  display: inline-block;
  background: linear-gradient(135deg, var(--miz-blue) 0%, var(--miz-blue-2) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 12px 24px rgba(10, 132, 255, .20));
}
.miz-kontakt__sub{
  margin: 0;
  max-width: 540px;
  font-size: clamp(16px, 1.55vw, 18px);
  line-height: 1.55;
  color: var(--miz-text-soft);
  font-weight: 720;
}


/* ── 3 Outcome-Cards: "was Sie bekommen" ─────────────────── */
.miz-kontakt__outcomes{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 24px);
}
.miz-outcome{
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 16px;
  padding: clamp(26px, 2.8vw, 34px);
  border-radius: clamp(22px, 2.2vw, 28px);
  border: 1px solid rgba(10, 28, 48, .08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(248, 251, 254, .94) 100%);
  box-shadow:
    0 24px 56px rgba(7, 19, 37, .07),
    0 6px 16px rgba(7, 19, 37, .04),
    inset 0 1px 0 rgba(255, 255, 255, .98);
  opacity: 0;
  transform: translateY(18px);
  transition:
    transform .56s cubic-bezier(.22, .68, .12, 1.04) var(--miz-outcome-delay, 0ms),
    opacity .56s ease var(--miz-outcome-delay, 0ms),
    box-shadow .42s var(--miz-ease),
    border-color .42s var(--miz-ease);
}
[data-reveal].is-visible .miz-outcome{
  opacity: 1;
  transform: translateY(0);
}
.miz-outcome::before{
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 14% 0%, rgba(10, 132, 255, .12), transparent 38%),
    radial-gradient(circle at 92% 96%, rgba(50, 211, 239, .08), transparent 42%);
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  transition: opacity .5s var(--miz-ease);
}
.miz-outcome:hover{
  transform: translateY(-6px);
  border-color: rgba(10, 132, 255, .22);
  box-shadow:
    0 36px 78px rgba(7, 19, 37, .12),
    0 14px 30px rgba(10, 132, 255, .10),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}
.miz-outcome:hover::before{ opacity: 1; }
.miz-outcome__icon{
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--miz-blue), var(--miz-blue-2));
  box-shadow:
    0 16px 32px rgba(10, 132, 255, .28),
    inset 0 1px 0 rgba(255, 255, 255, .22);
  transition: transform .5s var(--miz-ease);
}
.miz-outcome:hover .miz-outcome__icon{
  transform: scale(1.08) rotate(-4deg);
}
.miz-outcome__icon svg{
  width: 26px;
  height: 26px;
}
.miz-outcome__title{
  margin: 0;
  font-size: clamp(19px, 1.8vw, 22px);
  font-weight: 950;
  letter-spacing: -.018em;
  color: var(--miz-text);
}
.miz-outcome__copy{
  margin: 0;
  font-size: 14.5px;
  line-height: 1.58;
  color: var(--miz-text-soft);
  font-weight: 720;
}


/* ── Direkt-Kontakt-Buttons in den Outcome-Cards ─────────── */
.miz-section-contact a.miz-outcome__action{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
  padding: 13px 18px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: -.01em;
  color: #fff;
  background: linear-gradient(135deg, var(--miz-blue), var(--miz-blue-2));
  box-shadow: 0 14px 30px rgba(10, 132, 255, .3), inset 0 1px 0 rgba(255, 255, 255, .25);
  transition: transform .32s var(--miz-ease), box-shadow .32s var(--miz-ease), filter .32s var(--miz-ease);
}
.miz-outcome__action svg{
  width: 19px;
  height: 19px;
  flex: none;
}
.miz-outcome__action:hover{
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(10, 132, 255, .42), inset 0 1px 0 rgba(255, 255, 255, .3);
}
.miz-outcome__icon--call{
  background: #fff;
  color: #1faa4e;
  border: 1px solid rgba(37, 211, 102, .32);
  box-shadow: 0 14px 28px rgba(37, 211, 102, .16), inset 0 1px 0 #fff;
}
.miz-outcome__icon--whatsapp{
  background: linear-gradient(135deg, #25d366, #1ebe5b);
  box-shadow: 0 16px 32px rgba(37, 211, 102, .32), inset 0 1px 0 rgba(255, 255, 255, .22);
}
.miz-section-contact a.miz-outcome__action--call{
  color: #1faa4e;
  background: #fff;
  border: 1px solid rgba(37, 211, 102, .4);
  box-shadow: 0 14px 28px rgba(37, 211, 102, .16), inset 0 1px 0 #fff;
}
.miz-section-contact a.miz-outcome__action--call:hover{
  box-shadow: 0 20px 38px rgba(37, 211, 102, .26), inset 0 1px 0 #fff;
}
.miz-section-contact a.miz-outcome__action--whatsapp{
  color: #fff;
  background: linear-gradient(135deg, #25d366, #1ebe5b);
  box-shadow: 0 14px 30px rgba(37, 211, 102, .32), inset 0 1px 0 rgba(255, 255, 255, .25);
}
.miz-section-contact a.miz-outcome__action--whatsapp:hover{
  box-shadow: 0 20px 40px rgba(37, 211, 102, .44), inset 0 1px 0 rgba(255, 255, 255, .3);
}


@media (prefers-reduced-motion: reduce) {
  .miz-outcome__action:hover { transform: none; }
}


/* ── Form-Card: breit, premium, eigener Header ──────────── */
.miz-kontakt__form-card{
  position: relative;
  overflow: hidden;
  max-width: 880px;
  margin: 0 auto;
  width: 100%;
  padding: clamp(36px, 4.4vw, 64px);
  border-radius: clamp(26px, 2.6vw, 36px);
  border: 1px solid rgba(10, 28, 48, .08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(248, 251, 254, .94) 100%);
  box-shadow:
    0 44px 110px rgba(7, 19, 37, .14),
    0 16px 38px rgba(10, 132, 255, .07),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  scroll-margin-top: 100px;
}


/* Form-Header — premium */
.miz-kontakt__form-head{
  display: grid;
  gap: 12px;
  justify-items: start;
  margin-bottom: clamp(24px, 3vw, 36px);
  padding-bottom: clamp(20px, 2.4vw, 28px);
  border-bottom: 1px solid rgba(10, 28, 48, .08);
}
.miz-kontakt__form-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  border-radius: 999px;
  color: var(--miz-blue);
  background: linear-gradient(135deg, rgba(10, 132, 255, .12), rgba(50, 211, 239, .06));
  border: 1px solid rgba(10, 132, 255, .22);
  box-shadow: 0 6px 16px rgba(10, 132, 255, .10);
  font-size: 11.5px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.miz-kontakt__form-eyebrow svg{
  width: 14px;
  height: 14px;
}
.miz-kontakt__form-title{
  margin: 0;
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -.028em;
  color: var(--miz-text);
}
.miz-kontakt__form-sub{
  margin: 0;
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.55;
  color: var(--miz-text-soft);
  font-weight: 720;
}
.miz-kontakt__form-card::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 0% 0%, rgba(10, 132, 255, .07), transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(50, 211, 239, .05), transparent 42%);
}
.miz-kontakt__form-card > *{
  position: relative;
  z-index: 1;
}
.miz-kontakt__form{
  display: grid;
  grid-template-columns: minmax(0, 1fr);  /* zwingt Inhalt in Container-Breite */
  gap: 14px;
}


/* 2-col Row für Name/E-Mail + Telefon/Unternehmen */
.miz-kontakt__row{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-width: 0;   /* erlaubt Schrumpfen im Grid-Parent (kein Overflow) */
}


/* Premium Glass-Deep Floating-Label Fields */
.miz-kontakt__field{
  position: relative;
  isolation: isolate;
  min-width: 0;   /* Grid-Item darf unter Content-Breite schrumpfen */
}
.miz-kontakt__input{
  max-width: 100%;
}
.miz-kontakt__field::before{
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  background: linear-gradient(135deg, var(--miz-blue), var(--miz-blue-2));
  opacity: 0;
  z-index: -1;
  filter: blur(8px);
  transition: opacity .42s var(--miz-ease);
}
.miz-kontakt__field:focus-within::before{
  opacity: .42;
}
.miz-kontakt__field-icon{
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(75, 90, 110, .42);
  pointer-events: none;
  z-index: 2;
  transition: color .25s var(--miz-ease), transform .35s var(--miz-ease);
}
.miz-kontakt__field-icon svg{
  width: 100%;
  height: 100%;
}
.miz-kontakt__field-icon--top{
  top: 22px;
  transform: none;
}
.miz-kontakt__field:focus-within .miz-kontakt__field-icon{
  color: var(--miz-blue);
  transform: translateY(-50%) scale(1.08);
}
.miz-kontakt__field--textarea:focus-within .miz-kontakt__field-icon--top{
  transform: scale(1.08);
}
.miz-kontakt__input{
  width: 100%;
  padding: 24px 52px 10px 50px;
  border: 1px solid rgba(10, 28, 48, .10);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(248, 251, 254, .88));
  color: var(--miz-text);
  font-size: 15.5px;
  font-weight: 720;
  font-family: inherit;
  outline: none;
  caret-color: var(--miz-blue);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .96),
    inset 0 -1px 0 rgba(7, 19, 37, .02),
    0 2px 8px rgba(7, 19, 37, .03);
  transition:
    border-color .28s var(--miz-ease),
    box-shadow .28s var(--miz-ease),
    background .28s var(--miz-ease);
}
.miz-kontakt__textarea{
  resize: vertical;
  min-height: 144px;
  padding: 28px 22px 18px 50px;
  line-height: 1.58;
}
.miz-kontakt__input::placeholder{
  color: transparent;
}
.miz-kontakt__label{
  position: absolute;
  left: 50px;
  top: 19px;
  color: var(--miz-text);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -.005em;
  pointer-events: none;
  transform-origin: 0 0;
  transition: transform .28s var(--miz-ease), color .28s var(--miz-ease);
}


/* Sequenzielle Caret-Choreographie: Name → E-Mail → Nachricht
   Nur EIN Caret zur Zeit, wandert mit dem Fortschritt. */

@keyframes miz-kontakt-caret-blink {
  0%, 48%   { opacity: 1; }
  50%, 98%  { opacity: 0; }
  100%      { opacity: 1; }
}


/* Generic Caret-Style (wird nur an aktiven Feld appliziert) */
.miz-kontakt__form-card .miz-kontakt__label::after{
  content: "";
  display: none;
  width: 2px;
  height: 18px;
  margin-left: 7px;
  vertical-align: -4px;
  background: var(--miz-blue);
  border-radius: 1px;
  box-shadow: 0 0 8px rgba(10, 132, 255, .48);
  animation: miz-kontakt-caret-blink 1.06s ease-in-out infinite;
}


/* 1) Name leer & nicht fokussiert → Caret bei Name */
.miz-kontakt__form-card:not(:focus-within)
  .miz-kontakt__field:has(#miz-kontakt-name:placeholder-shown)
  .miz-kontakt__label::after{
  display: inline-block;
}


/* 2) Name befüllt, E-Mail leer & nicht fokussiert → Caret bei E-Mail */
.miz-kontakt__form-card:has(#miz-kontakt-name:not(:placeholder-shown)):not(:focus-within)
  .miz-kontakt__field:has(#miz-kontakt-email:placeholder-shown)
  .miz-kontakt__label::after{
  display: inline-block;
}
.miz-kontakt__form-card:has(#miz-kontakt-name:not(:placeholder-shown))
  .miz-kontakt__field:has(#miz-kontakt-name:placeholder-shown)
  .miz-kontakt__label::after{
  display: none;
}


/* 3) Name + E-Mail befüllt, Nachricht leer → Caret bei Nachricht */
.miz-kontakt__form-card:has(#miz-kontakt-name:not(:placeholder-shown)):has(#miz-kontakt-email:not(:placeholder-shown)):not(:focus-within)
  .miz-kontakt__field:has(#miz-kontakt-message:placeholder-shown)
  .miz-kontakt__label::after{
  display: inline-block;
}
.miz-kontakt__form-card:has(#miz-kontakt-email:not(:placeholder-shown))
  .miz-kontakt__field:has(#miz-kontakt-email:placeholder-shown)
  .miz-kontakt__label::after{
  display: none;
}


/* Beim Focus: kein Caret nötig (echter Browser-Caret übernimmt) */
.miz-kontakt__field:focus-within .miz-kontakt__label::after{
  display: none !important;
}
.miz-kontakt__input:focus,
.miz-kontakt__input:not(:placeholder-shown){
  border-color: rgba(10, 132, 255, .42);
  background: #fff;
}
.miz-kontakt__input:focus{
  box-shadow:
    0 0 0 4px rgba(10, 132, 255, .14),
    0 16px 36px rgba(10, 132, 255, .10),
    inset 0 1px 0 rgba(255, 255, 255, .98);
}
.miz-kontakt__input:focus + .miz-kontakt__label,
.miz-kontakt__input:not(:placeholder-shown) + .miz-kontakt__label,
.miz-kontakt__input.is-active + .miz-kontakt__label,
.miz-kontakt__input.is-filled + .miz-kontakt__label,
.miz-kontakt__input:-webkit-autofill + .miz-kontakt__label{
  transform: translateY(-14px) translateX(-2px) scale(.74);
  color: var(--miz-blue);
  /* Opaker Chip-Hintergrund: getippter/autofill-Text kann NIE
     hinter dem Label durchscheinen ("Text hinter dem Balken"-Bug). */
  background: #fff;
  padding: 0 7px;
  border-radius: 7px;
  z-index: 4;
  box-shadow: 0 0 0 3px #fff;
}


/* Required/Optional Mini-Pill im Field-Corner */
.miz-kontakt__field::after{
  position: absolute;
  top: -7px;
  right: 14px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 9.5px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  z-index: 3;
  opacity: 0;
  transform: translateY(2px);
  transition: opacity .35s var(--miz-ease), transform .35s var(--miz-ease);
}
.miz-kontakt__field[data-required]::after{
  content: "Pflicht";
  color: var(--miz-blue);
  background: linear-gradient(135deg, #fff, #f4f9ff);
  border: 1px solid rgba(10, 132, 255, .22);
  box-shadow: 0 4px 10px rgba(10, 132, 255, .14);
}
.miz-kontakt__field[data-optional]::after{
  content: "Optional";
  color: rgba(75, 90, 110, .72);
  background: linear-gradient(135deg, #fff, #f3f5f8);
  border: 1px solid rgba(10, 28, 48, .10);
  box-shadow: 0 4px 10px rgba(7, 19, 37, .04);
}
.miz-kontakt__field:focus-within::after,
.miz-kontakt__field:has(.miz-kontakt__input:not(:placeholder-shown))::after{
  opacity: 1;
  transform: translateY(0);
}


/* Live-Valid-Check rechts im Field */
.miz-kontakt__check-mark{
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%) scale(.6);
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #128c45);
  box-shadow: 0 6px 14px rgba(37, 211, 102, .36);
  opacity: 0;
  pointer-events: none;
  z-index: 3;
  transition: opacity .3s var(--miz-ease), transform .42s cubic-bezier(.22, 1.4, .36, 1);
}
.miz-kontakt__check-mark svg{
  width: 14px;
  height: 14px;
}
.miz-kontakt__field--textarea .miz-kontakt__check-mark{
  top: 22px;
  transform: scale(.6);
}


/* Erscheint wenn Feld valide befüllt ist */
.miz-kontakt__field:has(.miz-kontakt__input:valid:not(:placeholder-shown)) .miz-kontakt__check-mark{
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.miz-kontakt__field--textarea:has(.miz-kontakt__input:valid:not(:placeholder-shown)) .miz-kontakt__check-mark{
  opacity: 1;
  transform: scale(1);
}


/* Optional / Pflicht-Marker im Label */
.miz-kontakt__label em{
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(75, 90, 110, .55);
  margin-left: 4px;
}


/* Checkbox-Container */
.miz-kontakt__checks{
  display: grid;
  gap: 8px;
  margin-top: 2px;
}
.miz-kontakt__check{
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: flex-start;
  padding: 4px 2px;
  color: var(--miz-text-soft);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
}
.miz-kontakt__check input{
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--miz-blue);
  cursor: pointer;
}
.miz-kontakt__check a{
  color: var(--miz-blue);
  font-weight: 900;
  text-decoration: none;
}
.miz-kontakt__check a:hover{ text-decoration: underline; }
.miz-kontakt__check strong{
  color: var(--miz-blue);
  font-weight: 900;
}


/* Aurora-Submit: signature button mit rotierendem Gradient + Shine-Sweep */
.miz-kontakt__submit{
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 64px;
  padding: 0 32px;
  border: 0;
  border-radius: 18px;
  color: #fff;
  background: #0a3d8c;
  box-shadow:
    0 26px 52px rgba(10, 132, 255, .38),
    0 10px 22px rgba(10, 132, 255, .20),
    inset 0 1px 0 rgba(255, 255, 255, .28);
  font-size: 16.5px;
  font-weight: 950;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: transform .3s var(--miz-ease), box-shadow .3s var(--miz-ease);
  margin-top: 8px;
}


/* Button-Aurora: bleibt in der Button-Box, damit Elementor/Browser keine Overflow-Artefakte messen. */
.miz-kontakt__submit-aurora{
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, .28), transparent 31%),
    linear-gradient(135deg, var(--miz-blue), var(--miz-blue-2), #0757c9, var(--miz-blue));
  background-size: 160% 160%;
  animation: miz-kontakt-aurora 8s ease-in-out infinite;
  filter: blur(0px);
  opacity: 1;
}


@keyframes miz-kontakt-aurora {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}


/* Shine-Sweep beim Hover */
.miz-kontakt__submit::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .32) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform .9s var(--miz-ease);
  z-index: 1;
}
.miz-kontakt__submit-label,
.miz-kontakt__submit-arrow{
  position: relative;
  z-index: 2;
}
.miz-kontakt__submit:hover{
  transform: translateY(-3px);
  box-shadow:
    0 36px 72px rgba(10, 132, 255, .48),
    0 14px 30px rgba(10, 132, 255, .26),
    inset 0 1px 0 rgba(255, 255, 255, .32);
}
.miz-kontakt__submit:hover::before{
  transform: translateX(110%);
}
.miz-kontakt__submit:hover .miz-kontakt__submit-aurora{
  animation-duration: 3s;
}
.miz-kontakt__submit:active{
  transform: translateY(-1px);
}
.miz-kontakt__submit-arrow{
  width: 22px;
  height: 22px;
  transition: transform .3s var(--miz-ease);
}
.miz-kontakt__submit:hover .miz-kontakt__submit-arrow{
  transform: translateX(5px);
}


/* reCAPTCHA-Hinweis: dezent, mit Shield-Icon */
.miz-kontakt__recaptcha{
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 12px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(238, 244, 250, .54);
  border: 1px solid rgba(10, 28, 48, .06);
  color: rgba(75, 90, 110, .76);
  font-size: 11.5px;
  line-height: 1.55;
  font-weight: 650;
}
.miz-kontakt__recaptcha svg{
  width: 14px;
  height: 14px;
  margin-top: 1px;
  color: rgba(10, 132, 255, .68);
  flex-shrink: 0;
}
.miz-kontakt__recaptcha a{
  color: var(--miz-blue);
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}
.miz-kontakt__recaptcha a:hover{
  text-decoration: underline;
}


/* Trust-Mini-Strip unter Submit */
.miz-kontakt__trust{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(10, 28, 48, .08);
}
.miz-kontakt__trust span{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--miz-text-soft);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .01em;
}
.miz-kontakt__trust svg{
  width: 14px;
  height: 14px;
  color: #128c45;
  flex-shrink: 0;
}


/* ── Zitat-Strip ─────────────────────────────────────────── */
.miz-kontakt__quote{
  max-width: 640px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  display: grid;
  gap: 14px;
  justify-items: center;
}
.miz-kontakt__quote-mark{
  width: 38px;
  height: 38px;
  color: var(--miz-blue);
  opacity: .58;
}
.miz-kontakt__quote p{
  margin: 0;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 850;
  line-height: 1.32;
  letter-spacing: -.018em;
  color: var(--miz-text);
  font-style: italic;
}
.miz-kontakt__quote cite{
  font-size: 13px;
  font-weight: 850;
  font-style: normal;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--miz-text-soft);
}


/* ── Responsive ─────────────────────────────────────────── */

@media (max-width: 880px) {
  .miz-kontakt__outcomes {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}


@media (max-width: 540px) {
  .miz-kontakt__form-card {
    padding: clamp(24px, 6vw, 32px);
  }

  .miz-kontakt__row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}


/* ── Reduced-Motion ──────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  .miz-outcome {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .miz-outcome:hover {
    transform: none;
  }
  .miz-outcome:hover .miz-outcome__icon {
    transform: none;
  }
  .miz-kontakt__submit:hover {
    transform: none;
  }
  .miz-kontakt__submit::before {
    display: none;
  }
  .miz-kontakt__submit-aurora {
    animation: none;
  }
  .miz-kontakt__field:focus-within .miz-kontakt__field-icon {
    transform: translateY(-50%);
  }
  .miz-kontakt__check-mark {
    transition: opacity .2s ease;
  }
  .miz-kontakt__form-card .miz-kontakt__label::after {
    animation: none;
  }
}


/* ── Dark Mode ──────────────────────────────────────────── */

@media (prefers-color-scheme: dark) {
  :root:not([data-color-scheme]) .miz-section-contact {
    background:
      radial-gradient(circle at 18% 0%, rgba(10, 132, 255, .18), transparent 32%),
      radial-gradient(circle at 84% 14%, rgba(50, 211, 239, .12), transparent 34%),
      linear-gradient(180deg, #050d1c 0%, #020813 100%);
  }
  :root:not([data-color-scheme]) .miz-kontakt__eyebrow {
    color: #62b8ff;
    background: rgba(10, 132, 255, .14);
    border-color: rgba(10, 132, 255, .32);
  }
  :root:not([data-color-scheme]) .miz-kontakt__title { color: #fff; }
  :root:not([data-color-scheme]) .miz-kontakt__sub,
  :root:not([data-color-scheme]) .miz-outcome__copy { color: rgba(207, 222, 240, .82); }
  :root:not([data-color-scheme]) .miz-outcome,
  :root:not([data-color-scheme]) .miz-kontakt__form-card {
    background: linear-gradient(135deg, rgba(15, 28, 50, .92), rgba(7, 18, 36, .88));
    border-color: rgba(10, 132, 255, .18);
  }
  :root:not([data-color-scheme]) .miz-outcome__title,
  :root:not([data-color-scheme]) .miz-kontakt__quote p { color: #fff; }
  :root:not([data-color-scheme]) .miz-kontakt__input {
    background: rgba(255, 255, 255, .04);
    border-color: rgba(255, 255, 255, .14);
    color: #fff;
  }
  :root:not([data-color-scheme]) .miz-kontakt__input:focus {
    background: rgba(255, 255, 255, .06);
  }
  :root:not([data-color-scheme]) .miz-kontakt__label { color: rgba(207, 222, 240, .56); }
}


/* ═══════════════════════════════════════════════════════════════════
   EINHEITLICHE CONTENT-BREITEN (Hero ausgenommen)
   Zwei saubere Standards: wide (Grids) + narrow (Lesbarkeit).
   Alle zentriert → konsistenter Rahmen mit Luft links/rechts.
   ═══════════════════════════════════════════════════════════════════ */


/* Section-Shells (ausser Hero) auf einheitlichen Rahmen */
.miz-page-home .miz-section .miz-shell{
  width: min(var(--miz-content-wide), calc(100% - 48px));
  margin-inline: auto;
}


/* WIDE-Container: Grids + Card-Reihen nutzen vollen Rahmen */
.miz-service-grid,
.miz-addon-band,
.miz-outcome-row,
.miz-section-cta,
.miz-handshake,
.miz-branches,
.miz-kontakt__outcomes,
.miz-card-grid-3{
  max-width: 100%;
  margin-inline: auto;
}


/* NARROW-Container: Lesbarkeits-Inhalte einheitlich + zentriert */
.miz-flow,
.miz-flow-complete,
.miz-faq-list,
.miz-kontakt__form-card,
.miz-profile,
.miz-kontakt__lead,
.miz-section-head{
  max-width: var(--miz-content-narrow);
  margin-inline: auto;
}


/* ═══════════════════════════════════════════════════════════════════
   PROBLEM + LÖSUNG GRAFIKEN — einfacher, logischer, hover-betont
   Keine dauerhafte Show-Animation; Premium-Tiefe erst bei Interaktion.
   ═══════════════════════════════════════════════════════════════════ */
.miz-stage-simple{
  min-height: 288px;
  display: grid;
  place-items: center;
  padding: 28px;
}
.miz-stage-simple::after{
  opacity: .52;
  transition: opacity .35s var(--miz-ease), filter .35s var(--miz-ease);
}
.miz-info-card:hover .miz-stage-simple::after{
  opacity: .82;
  filter: blur(10px);
}
.miz-local-choice{
  position: relative;
  z-index: 2;
  width: min(100%, 300px);
  display: grid;
  gap: 12px;
}
.miz-local-choice__query{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 9px 13px;
  border-radius: 999px;
  color: #0a3d8c;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(10, 132, 255, .18);
  box-shadow: 0 12px 24px rgba(7, 19, 37, .08);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .02em;
}
.miz-local-choice__row{
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 74px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(10, 28, 48, .08);
  box-shadow: 0 18px 34px rgba(7, 19, 37, .10);
  transform: translateY(0);
  transition:
    transform .36s var(--miz-ease),
    box-shadow .36s var(--miz-ease),
    border-color .36s var(--miz-ease),
    filter .36s var(--miz-ease);
}
.miz-local-choice__rank{
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 950;
  color: #fff;
  background: linear-gradient(135deg, #0a84ff, #006edc);
  box-shadow: 0 8px 18px rgba(10, 132, 255, .26);
}
.miz-local-choice__row strong{
  display: block;
  color: #06111f;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.1;
}
.miz-local-choice__row em{
  display: block;
  margin-top: 4px;
  font-style: normal;
  color: rgba(10, 28, 48, .62);
  font-size: 10.5px;
  font-weight: 760;
  line-height: 1.35;
}
.miz-local-choice__action{
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.miz-local-choice__row--win .miz-local-choice__action{
  color: #0b6c37;
  background: rgba(37, 211, 102, .16);
}
.miz-local-choice__row--lost{
  opacity: .64;
  filter: saturate(.72);
  transform: translateX(14px) scale(.96);
}
.miz-local-choice__row--lost .miz-local-choice__rank{
  background: linear-gradient(135deg, #8b96a6, #5f6b7a);
  box-shadow: none;
}
.miz-local-choice__row--lost .miz-local-choice__action{
  color: #b54723;
  background: rgba(255, 122, 89, .14);
}
.miz-info-card:hover .miz-local-choice__row--win{
  transform: translateY(-5px) scale(1.025);
  border-color: rgba(10, 132, 255, .28);
  box-shadow:
    0 30px 60px rgba(7, 19, 37, .16),
    0 0 34px rgba(10, 132, 255, .16);
}
.miz-info-card:hover .miz-local-choice__row--lost{
  transform: translateX(18px) scale(.94);
  opacity: .45;
}
.miz-broken-path{
  position: relative;
  z-index: 2;
  width: min(100%, 304px);
  display: grid;
  gap: 18px;
}
.miz-broken-path__sources{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.miz-broken-path__sources span,
.miz-broken-path__target{
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(10, 28, 48, .08);
  box-shadow: 0 16px 32px rgba(7, 19, 37, .09);
}
.miz-broken-path__sources span{
  min-height: 70px;
  gap: 6px;
  color: #2f3d52;
  font-size: 10.5px;
  font-weight: 920;
}
.miz-broken-path__sources i{
  font-size: 20px;
  color: rgba(10, 132, 255, .76);
}


/* echte Plattform-Farben → sofortige Wiedererkennung */
.miz-broken-path__sources span:nth-child(1) i{ color: #0a84ff; }
.miz-broken-path__sources span:nth-child(2) i{ color: #ea4335; }
.miz-broken-path__sources span:nth-child(3) i{ color: #dd2a7b; }
.miz-broken-path__line{
  position: relative;
  height: 46px;
}


/* gestrichelte Verbindung, in der Mitte sichtbar gekappt */
.miz-broken-path__line::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2.5px;
  transform: translateX(-50%);
  background: repeating-linear-gradient(180deg, rgba(255, 122, 89, .6) 0 5px, transparent 5px 10px);
  -webkit-mask: linear-gradient(180deg, #000 0 34%, transparent 34% 66%, #000 66% 100%);
          mask: linear-gradient(180deg, #000 0 34%, transparent 34% 66%, #000 66% 100%);
}


/* roter ✕-Badge in der Lücke = "Weg ist unterbrochen" */
.miz-broken-path__line::after{
  content: "✕";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 11px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, #ff7a59, #e0431d);
  box-shadow: 0 6px 14px rgba(224, 67, 29, .4), 0 0 0 4px rgba(255, 122, 89, .12);
}
.miz-broken-path__target{
  min-height: 86px;
  gap: 8px;
  color: #b9421e;
  background: linear-gradient(135deg, rgba(255, 122, 89, .14), rgba(255, 255, 255, .80));
  border: 1px solid rgba(255, 122, 89, .28);
}
.miz-broken-path__target i{
  font-size: 24px;
}
.miz-broken-path__target svg{
  width: 26px;
  height: 26px;
  color: #e0431d;
}
.miz-broken-path__target strong{
  max-width: 20ch;
  font-size: 13px;
  line-height: 1.18;
  font-weight: 950;
}
.miz-info-card:hover .miz-broken-path__sources span{
  border-color: rgba(10, 132, 255, .18);
  transform: translateY(-3px);
}
.miz-info-card:hover .miz-broken-path__target{
  border-color: rgba(255, 122, 89, .48);
  box-shadow:
    0 22px 48px rgba(194, 69, 28, .14),
    0 0 26px rgba(255, 122, 89, .16);
}
.miz-broken-path__sources span,
.miz-broken-path__target{
  transition: transform .34s var(--miz-ease), box-shadow .34s var(--miz-ease), border-color .34s var(--miz-ease);
}


/* ── Drama: schwebende Fragezeichen = Verunsicherung ─────── */
.miz-broken-path__doubts{
  position: absolute;
  inset: -26px -14px;
  z-index: 4;
  pointer-events: none;
}
.miz-broken-path__q{
  position: absolute;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 950;
  line-height: 1;
  color: #e0431d;
  text-shadow: 0 6px 18px rgba(224, 67, 29, .34);
  opacity: .9;
  will-change: transform, opacity;
}
.miz-broken-path__q--1{
  top: 2%;
  right: 4%;
  font-size: 40px;
  color: #ff5a36;
  transform: rotate(12deg);
  animation: miz-doubt-float 3.4s ease-in-out infinite;
}
.miz-broken-path__q--2{
  top: 30%;
  left: -2%;
  font-size: 26px;
  color: #ff7a59;
  opacity: .72;
  transform: rotate(-14deg);
  animation: miz-doubt-float 4.1s ease-in-out .4s infinite;
}
.miz-broken-path__q--3{
  bottom: 16%;
  right: -2%;
  font-size: 30px;
  transform: rotate(8deg);
  animation: miz-doubt-float 3.8s ease-in-out .8s infinite;
}
.miz-broken-path__q--4{
  bottom: 2%;
  left: 8%;
  font-size: 20px;
  color: #ff8a6b;
  opacity: .6;
  transform: rotate(-8deg);
  animation: miz-doubt-float 4.6s ease-in-out .2s infinite;
}


@keyframes miz-doubt-float {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); opacity: .55; }
  50%      { transform: translateY(-9px) rotate(var(--r, 0deg)); opacity: .95; }
}
.miz-broken-path__q--1{ --r: 12deg; }
.miz-broken-path__q--2{ --r: -14deg; }
.miz-broken-path__q--3{ --r: 8deg; }
.miz-broken-path__q--4{ --r: -8deg; }


/* beim Hover „eskaliert" die Verunsicherung leicht */
.miz-info-card:hover .miz-broken-path__q{
  opacity: 1;
}


@media (prefers-reduced-motion: reduce) {
  .miz-broken-path__q { animation: none; }
}
.miz-service-mockup{
  background:
    radial-gradient(120% 92% at 50% -12%, rgba(10, 132, 255, .22), transparent 58%),
    radial-gradient(90% 70% at 50% 118%, rgba(7, 19, 37, .14), transparent 62%),
    linear-gradient(180deg, #e7f0fb 0%, #cedef0 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .7),
    inset 0 -34px 56px -44px rgba(7, 19, 37, .55);
}


.miz-service-card--premium:hover .miz-service-media,
.miz-info-card:hover .miz-stage{
  background-position: 50% 44%;
}


/* ─────────────────────────────────────────────────────────
   CTA ICONS + LIGHT SURFACE CONTRAST — live-sicher
   ───────────────────────────────────────────────────────── */
.miz-btn-icon{
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit !important;
  line-height: 1;
}
.miz-btn-icon svg{
  width: 1em;
  height: 1em;
  display: block;
  overflow: visible;
  color: inherit !important;
}
.miz-btn-icon svg path,
.miz-btn svg path{
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.miz-btn-primary,
.miz-btn-primary:link,
.miz-btn-primary:visited,
.miz-btn-primary:hover,
.miz-btn-primary:focus-visible{
  color: #fff;
}
.miz-section-light .miz-btn-secondary,
.miz-section-light .miz-btn-ghost,
.miz-section-cta--light .miz-btn-secondary,
.miz-section-cta--light .miz-btn-ghost,
.miz-addon-band .miz-btn-secondary,
#vertrauen .miz-btn-secondary,
#kontakt .miz-btn-secondary{
  color: #071325;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(243, 248, 255, .92));
  border-color: rgba(7, 19, 37, .18);
  box-shadow:
    0 14px 32px rgba(7, 19, 37, .10),
    inset 0 1px 0 rgba(255, 255, 255, .92);
  text-shadow: none;
}
.miz-section-light .miz-btn-secondary:link,
.miz-section-light .miz-btn-secondary:visited,
.miz-section-light .miz-btn-secondary:hover,
.miz-section-light .miz-btn-secondary:focus-visible,
.miz-section-light .miz-btn-ghost:link,
.miz-section-light .miz-btn-ghost:visited,
.miz-section-light .miz-btn-ghost:hover,
.miz-section-light .miz-btn-ghost:focus-visible,
.miz-section-cta--light .miz-btn-secondary:link,
.miz-section-cta--light .miz-btn-secondary:visited,
.miz-section-cta--light .miz-btn-secondary:hover,
.miz-section-cta--light .miz-btn-secondary:focus-visible,
.miz-section-cta--light .miz-btn-ghost:link,
.miz-section-cta--light .miz-btn-ghost:visited,
.miz-section-cta--light .miz-btn-ghost:hover,
.miz-section-cta--light .miz-btn-ghost:focus-visible,
.miz-addon-band .miz-btn-secondary:link,
.miz-addon-band .miz-btn-secondary:visited,
.miz-addon-band .miz-btn-secondary:hover,
.miz-addon-band .miz-btn-secondary:focus-visible,
#vertrauen .miz-btn-secondary:link,
#vertrauen .miz-btn-secondary:visited,
#vertrauen .miz-btn-secondary:hover,
#vertrauen .miz-btn-secondary:focus-visible,
#kontakt .miz-btn-secondary:link,
#kontakt .miz-btn-secondary:visited,
#kontakt .miz-btn-secondary:hover,
#kontakt .miz-btn-secondary:focus-visible{
  color: #071325;
}
.miz-section-light .miz-btn-secondary:hover,
.miz-section-light .miz-btn-ghost:hover,
.miz-section-cta--light .miz-btn-secondary:hover,
.miz-section-cta--light .miz-btn-ghost:hover,
.miz-addon-band .miz-btn-secondary:hover,
#vertrauen .miz-btn-secondary:hover,
#kontakt .miz-btn-secondary:hover{
  background:
    linear-gradient(135deg, #fff 0%, rgba(235, 245, 255, .98) 100%);
  border-color: rgba(10, 132, 255, .30);
  box-shadow:
    0 18px 42px rgba(7, 19, 37, .14),
    0 0 0 5px rgba(10, 132, 255, .08),
    inset 0 1px 0 rgba(255, 255, 255, .96);
}
.miz-section-light .miz-service-card:not(.miz-service-card--premium),
.miz-section-light .miz-info-card:not(.miz-info-card--dark),
.miz-section-light .miz-card:not(.miz-card-dark):not(.miz-surface-dark){
  color: #071325;
}
.miz-section-light .miz-service-card:not(.miz-service-card--premium) :is(h2, h3, h4, strong),
.miz-section-light .miz-info-card:not(.miz-info-card--dark) :is(h2, h3, h4, strong),
.miz-section-light .miz-card:not(.miz-card-dark):not(.miz-surface-dark) :is(h2, h3, h4, strong){
  color: #071325;
}
.miz-section-light .miz-service-card:not(.miz-service-card--premium) :is(p, li, span):not(.miz-btn-icon),
.miz-section-light .miz-info-card:not(.miz-info-card--dark) :is(p, li, span):not(.miz-btn-icon),
.miz-section-light .miz-card:not(.miz-card-dark):not(.miz-surface-dark) :is(p, li, span):not(.miz-btn-icon){
  color: rgba(10, 28, 48, .78);
}
.miz-section-light .miz-addon-band,
.miz-section-light .miz-outcome-row > div,
.miz-section-light .miz-section-cta--light{
  color: #071325 !important;
}
.miz-section-light .miz-addon-band__body h3,
.miz-section-light .miz-outcome-row strong,
.miz-section-light .miz-section-cta--light strong{
  color: #071325 !important;
}
.miz-section-light .miz-addon-band__body p,
.miz-section-light .miz-outcome-row span{
  color: rgba(10, 28, 48, .78) !important;
}
.miz-section-light .miz-section-cta--light span:not(.miz-btn-icon):not(.miz-section-cta__icon){
  color: #075fd4 !important;
}
.miz-section-light .miz-section-cta--light .miz-section-cta__icon,
.miz-section-light .miz-section-cta--light .miz-section-cta__icon i{
  color: #fff !important;
}


@media (prefers-color-scheme: dark) {
  /* Premium-Service-Cards bleiben im hellen Lösungsteil bewusst dunkel. */
  :root:not([data-color-scheme]) .miz-section-light .miz-service-card--premium,
  :root[data-color-scheme="auto"] .miz-section-light .miz-service-card--premium {
    color: #e8f0f8 !important;
    background:
      linear-gradient(135deg, rgba(20, 38, 64, .88), rgba(9, 22, 42, .94)) !important;
    border-color: rgba(255, 255, 255, .08) !important;
  }

  :root:not([data-color-scheme]) .miz-section-light .miz-service-card--premium h3,
  :root[data-color-scheme="auto"] .miz-section-light .miz-service-card--premium h3 {
    color: #fff !important;
  }

  :root:not([data-color-scheme]) .miz-section-light .miz-service-card--premium p,
  :root[data-color-scheme="auto"] .miz-section-light .miz-service-card--premium p {
    color: rgba(207, 222, 240, .82) !important;
  }
}


@media (max-width: 540px) {
  .miz-stage-simple {
    min-height: 250px;
    padding: 18px;
  }

  .miz-local-choice__row {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .miz-local-choice__action {
    grid-column: 2;
    width: fit-content;
  }

  .miz-solution-visual {
    min-height: 174px;
    padding: 18px;
  }

  .miz-solution-visual strong {
    font-size: 21px;
  }
}


/* Finaler Kontrast-Guard: Kontakt bleibt bewusst hell, auch wenn das System
   im Dark Mode ist. Vorher griffen ältere Kontakt-Regeln mit weißen Texten
   auf hellem Verlauf. */

@media (prefers-color-scheme: dark) {
  :root:not([data-color-scheme]) .miz-page .miz-section-contact,
  :root[data-color-scheme="auto"] .miz-page .miz-section-contact {
    color: #071325 !important;
    background:
      radial-gradient(circle at 15% 0%, rgba(10, 132, 255, .13), transparent 34%),
      radial-gradient(circle at 88% 12%, rgba(0, 217, 255, .08), transparent 30%),
      linear-gradient(180deg, #f7fbff 0%, #eef5fb 54%, #eaf1f8 100%) !important;
  }

  :root:not([data-color-scheme]) .miz-section-contact .miz-kontakt__title,
  :root[data-color-scheme="auto"] .miz-section-contact .miz-kontakt__title,
  :root:not([data-color-scheme]) .miz-section-contact .miz-kontakt__form-title,
  :root[data-color-scheme="auto"] .miz-section-contact .miz-kontakt__form-title,
  :root:not([data-color-scheme]) .miz-section-contact .miz-outcome__title,
  :root[data-color-scheme="auto"] .miz-section-contact .miz-outcome__title,
  :root:not([data-color-scheme]) .miz-section-contact .miz-kontakt__quote p,
  :root[data-color-scheme="auto"] .miz-section-contact .miz-kontakt__quote p {
    color: #051124 !important;
  }

  :root:not([data-color-scheme]) .miz-section-contact .miz-kontakt__sub,
  :root[data-color-scheme="auto"] .miz-section-contact .miz-kontakt__sub,
  :root:not([data-color-scheme]) .miz-section-contact .miz-kontakt__form-sub,
  :root[data-color-scheme="auto"] .miz-section-contact .miz-kontakt__form-sub,
  :root:not([data-color-scheme]) .miz-section-contact .miz-outcome__copy,
  :root[data-color-scheme="auto"] .miz-section-contact .miz-outcome__copy {
    color: rgba(42, 58, 85, .86) !important;
  }

  :root:not([data-color-scheme]) .miz-section-contact .miz-outcome,
  :root[data-color-scheme="auto"] .miz-section-contact .miz-outcome,
  :root:not([data-color-scheme]) .miz-section-contact .miz-kontakt__form-card,
  :root[data-color-scheme="auto"] .miz-section-contact .miz-kontakt__form-card {
    color: #071325 !important;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(242, 247, 252, .90)) !important;
    border-color: rgba(10, 28, 48, .12) !important;
    box-shadow:
      0 26px 72px rgba(7, 19, 37, .13),
      inset 0 1px 0 rgba(255, 255, 255, .82) !important;
  }

  :root:not([data-color-scheme]) .miz-section-contact .miz-kontakt__input,
  :root[data-color-scheme="auto"] .miz-section-contact .miz-kontakt__input {
    color: #071325 !important;
    background: rgba(255, 255, 255, .82) !important;
    border-color: rgba(10, 28, 48, .14) !important;
  }

  :root:not([data-color-scheme]) .miz-section-contact .miz-kontakt__input::placeholder,
  :root[data-color-scheme="auto"] .miz-section-contact .miz-kontakt__input::placeholder {
    color: rgba(42, 58, 85, .46) !important;
  }

  :root:not([data-color-scheme]) .miz-section-contact .miz-kontakt__label,
  :root[data-color-scheme="auto"] .miz-section-contact .miz-kontakt__label,
  :root:not([data-color-scheme]) .miz-section-contact .miz-kontakt__check,
  :root[data-color-scheme="auto"] .miz-section-contact .miz-kontakt__check,
  :root:not([data-color-scheme]) .miz-section-contact .miz-kontakt__recaptcha,
  :root[data-color-scheme="auto"] .miz-section-contact .miz-kontakt__recaptcha {
    color: rgba(42, 58, 85, .76) !important;
  }

  :root:not([data-color-scheme]) #vertrauen .miz-profile,
  :root[data-color-scheme="auto"] #vertrauen .miz-profile,
  :root:not([data-color-scheme]) #vertrauen .miz-handshake-tile:not(.miz-handshake-tile--me),
  :root[data-color-scheme="auto"] #vertrauen .miz-handshake-tile:not(.miz-handshake-tile--me),
  :root:not([data-color-scheme]) #vertrauen .miz-branch-tile,
  :root[data-color-scheme="auto"] #vertrauen .miz-branch-tile {
    color: #071325 !important;
  }

  :root:not([data-color-scheme]) #vertrauen .miz-profile :is(h3, strong),
  :root[data-color-scheme="auto"] #vertrauen .miz-profile :is(h3, strong),
  :root:not([data-color-scheme]) #vertrauen .miz-handshake-tile:not(.miz-handshake-tile--me) :is(h3, strong),
  :root[data-color-scheme="auto"] #vertrauen .miz-handshake-tile:not(.miz-handshake-tile--me) :is(h3, strong),
  :root:not([data-color-scheme]) #vertrauen .miz-branch-tile :is(h3, strong),
  :root[data-color-scheme="auto"] #vertrauen .miz-branch-tile :is(h3, strong) {
    color: #051124 !important;
  }

  :root:not([data-color-scheme]) #vertrauen .miz-profile :is(p, li, span):not(.miz-btn-icon),
  :root[data-color-scheme="auto"] #vertrauen .miz-profile :is(p, li, span):not(.miz-btn-icon),
  :root:not([data-color-scheme]) #vertrauen .miz-handshake-tile:not(.miz-handshake-tile--me) :is(p, li, span):not(.miz-btn-icon),
  :root[data-color-scheme="auto"] #vertrauen .miz-handshake-tile:not(.miz-handshake-tile--me) :is(p, li, span):not(.miz-btn-icon),
  :root:not([data-color-scheme]) #vertrauen .miz-branch-tile :is(p, li, span):not(.miz-btn-icon),
  :root[data-color-scheme="auto"] #vertrauen .miz-branch-tile :is(p, li, span):not(.miz-btn-icon) {
    color: rgba(42, 58, 85, .78) !important;
  }

  :root:not([data-color-scheme]) #vertrauen .miz-profile__handle,
  :root[data-color-scheme="auto"] #vertrauen .miz-profile__handle {
    color: #46597a !important;
  }

  :root:not([data-color-scheme]) #vertrauen .miz-profile__tags i,
  :root[data-color-scheme="auto"] #vertrauen .miz-profile__tags i,
  :root:not([data-color-scheme]) #vertrauen .miz-handshake-tile:not(.miz-handshake-tile--me) .miz-handshake-tile__chip i,
  :root[data-color-scheme="auto"] #vertrauen .miz-handshake-tile:not(.miz-handshake-tile--me) .miz-handshake-tile__chip i {
    color: var(--miz-blue) !important;
  }

  :root:not([data-color-scheme]) #vertrauen .miz-handshake-tile:not(.miz-handshake-tile--me) li i,
  :root[data-color-scheme="auto"] #vertrauen .miz-handshake-tile:not(.miz-handshake-tile--me) li i,
  :root:not([data-color-scheme]) #vertrauen .miz-branch-tile i,
  :root[data-color-scheme="auto"] #vertrauen .miz-branch-tile i {
    color: #fff !important;
  }

  :root:not([data-color-scheme]) #vertrauen .miz-profile__actions .miz-btn-primary,
  :root[data-color-scheme="auto"] #vertrauen .miz-profile__actions .miz-btn-primary,
  :root:not([data-color-scheme]) #vertrauen .miz-profile__actions .miz-btn-primary *,
  :root[data-color-scheme="auto"] #vertrauen .miz-profile__actions .miz-btn-primary * {
    color: #fff !important;
  }
}


/* ============================================================
   MIZ FINAL INTERACTION LAYER
   Scroll, Hover und Farblogik fuer Child-Theme Header/Footer.
   ============================================================ */
:root{
  --miz-live-nav-bg: rgba(9, 17, 30, .66);
  --miz-live-nav-bg-scrolled: rgba(7, 14, 26, .84);
  --miz-live-nav-line: rgba(255, 255, 255, .16);
  --miz-live-hover-blue: rgba(10, 132, 255, .16);
  --miz-live-hover-blue-strong: rgba(10, 132, 255, .26);
  --miz-live-text-dark: #071325;
  --miz-live-text-muted: rgba(42, 58, 85, .78);
}
.miz-scroll-progress{
  z-index: 1200;
  height: 3px;
  transform-origin: left center;
  background:
    linear-gradient(90deg, #0a84ff 0%, #32d3ef 52%, #25d366 100%);
  box-shadow:
    0 0 18px rgba(10, 132, 255, .46),
    0 0 28px rgba(50, 211, 239, .24);
}
.miz-nav{
  z-index: 1100;
  border-color: var(--miz-live-nav-line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .06)),
    var(--miz-live-nav-bg);
  box-shadow:
    0 22px 64px rgba(2, 8, 19, .30),
    0 0 0 1px rgba(255, 255, 255, .04),
    inset 0 1px 0 rgba(255, 255, 255, .16);
  transition:
    min-height .24s var(--miz-ease),
    transform .24s var(--miz-ease),
    background .24s var(--miz-ease),
    border-color .24s var(--miz-ease),
    box-shadow .24s var(--miz-ease);
}
.miz-nav.is-scrolled,
.miz-nav.is-deep-scroll{
  border-color: rgba(255, 255, 255, .12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .045)),
    var(--miz-live-nav-bg-scrolled);
  box-shadow:
    0 18px 54px rgba(2, 8, 19, .38),
    0 0 0 1px rgba(255, 255, 255, .035),
    inset 0 1px 0 rgba(255, 255, 255, .13);
}
.miz-nav-link,
.miz-nav-links > a,
.miz-nav-cta,
.miz-nav-toggle{
  position: relative;
  isolation: isolate;
}
.miz-nav-link::after,
.miz-nav-links > a::after{
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0a84ff, #32d3ef);
  opacity: 0;
  transform: scaleX(.35);
  transition: opacity .2s var(--miz-ease), transform .2s var(--miz-ease);
}
.miz-nav-link:hover,
.miz-nav-links > a:hover,
.miz-nav-link.is-active,
.miz-nav-link[aria-current="page"]{
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .055)),
    var(--miz-live-hover-blue);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .12),
    0 10px 24px rgba(10, 132, 255, .10);
}
.miz-nav-link:hover::after,
.miz-nav-link.is-active::after,
.miz-nav-link[aria-current="page"]::after{
  opacity: 1;
  transform: scaleX(1);
}
.miz-nav-link:hover .miz-nav-link__icon,
.miz-nav-link.is-active .miz-nav-link__icon,
.miz-nav-link[aria-current="page"] .miz-nav-link__icon{
  color: #fff;
  background: linear-gradient(135deg, #0a84ff, #0066ff);
  border-color: rgba(255, 255, 255, .18);
  box-shadow:
    0 8px 18px rgba(10, 132, 255, .28),
    inset 0 1px 0 rgba(255, 255, 255, .20);
}
.miz-nav-cta{
  color: #fff !important;
  background: linear-gradient(135deg, #0a84ff, #0066ff);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow:
    0 16px 36px rgba(10, 132, 255, .30),
    inset 0 1px 0 rgba(255, 255, 255, .22);
}
.miz-nav-cta:hover{
  color: #fff !important;
  transform: translateY(-2px);
  filter: saturate(1.08);
  box-shadow:
    0 22px 46px rgba(10, 132, 255, .38),
    0 0 0 6px rgba(10, 132, 255, .10),
    inset 0 1px 0 rgba(255, 255, 255, .24);
}
.miz-nav-toggle:hover{
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .22);
  box-shadow: 0 12px 26px rgba(2, 8, 19, .18), inset 0 1px 0 rgba(255, 255, 255, .14);
}
.miz-mobile-menu{
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    radial-gradient(circle at 12% 0%, rgba(10, 132, 255, .18), transparent 34%),
    linear-gradient(135deg, rgba(13, 24, 42, .96), rgba(5, 12, 24, .94));
  box-shadow:
    0 24px 56px rgba(2, 8, 19, .34),
    inset 0 1px 0 rgba(255, 255, 255, .10);
}
.miz-mobile-menu__section a:hover,
.miz-mobile-menu__section a:focus-visible{
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .05)),
    rgba(10, 132, 255, .14);
  border-color: rgba(10, 132, 255, .24);
}
.miz-mobile-menu__section a:hover i,
.miz-mobile-menu__section a:focus-visible i{
  color: #fff;
  background: linear-gradient(135deg, #0a84ff, #0066ff);
}
[data-spotlight]::before{
  background:
    radial-gradient(circle at var(--spotlight-x) var(--spotlight-y), rgba(10, 132, 255, .18), transparent 32%),
    radial-gradient(circle at var(--spotlight-x) var(--spotlight-y), rgba(255, 255, 255, .18), transparent 24%);
  mix-blend-mode: screen;
}
.miz-info-card,
.miz-service-card,
.miz-flow-step,
.miz-handshake-tile,
.miz-branch-tile,
.miz-faq-item,
.miz-contact-card,
.miz-page-card,
.miz-page-state-card,
.miz-page-related-link{
  transition:
    transform .24s var(--miz-ease),
    box-shadow .24s var(--miz-ease),
    border-color .24s var(--miz-ease),
    background .24s var(--miz-ease),
    color .24s var(--miz-ease),
    filter .24s var(--miz-ease);
}
.miz-info-card:hover,
.miz-service-card:hover,
.miz-flow-step:hover,
.miz-handshake-tile:hover,
.miz-branch-tile:hover,
.miz-faq-item:hover,
.miz-page-card:hover,
.miz-page-state-card:hover,
.miz-page-related-link:hover{
  border-color: rgba(10, 132, 255, .26);
  box-shadow:
    0 28px 68px rgba(2, 8, 19, .18),
    0 0 0 1px rgba(10, 132, 255, .10),
    inset 0 1px 0 rgba(255, 255, 255, .12);
}
.miz-section-light :is(.miz-info-card, .miz-service-card, .miz-flow-step, .miz-handshake-tile, .miz-branch-tile, .miz-faq-item, .miz-page-card, .miz-page-state-card){
  color: var(--miz-live-text-dark);
}
.miz-section-light :is(.miz-info-card, .miz-service-card, .miz-flow-step, .miz-handshake-tile, .miz-branch-tile, .miz-faq-item, .miz-page-card, .miz-page-state-card) :is(p, li, span):not(.miz-btn-icon):not(.miz-pill):not(.miz-kicker){
  color: var(--miz-live-text-muted);
}
.miz-section-light :is(.miz-info-card, .miz-service-card, .miz-flow-step, .miz-handshake-tile, .miz-branch-tile, .miz-faq-item, .miz-page-card, .miz-page-state-card) :is(h2, h3, strong){
  color: #051124;
}
.miz-bg-dark :is(.miz-info-card, .miz-service-card, .miz-flow-step, .miz-faq-item, .miz-page-card),
.miz-section-problem :is(.miz-info-card, .miz-service-card, .miz-flow-step, .miz-faq-item, .miz-page-card),
.miz-surface-dark :is(.miz-info-card, .miz-service-card, .miz-flow-step, .miz-faq-item, .miz-page-card){
  color: #f7fbff;
}
.miz-bg-dark :is(.miz-info-card, .miz-service-card, .miz-flow-step, .miz-faq-item, .miz-page-card) :is(p, li, span):not(.miz-btn-icon):not(.miz-pill):not(.miz-kicker),
.miz-section-problem :is(.miz-info-card, .miz-service-card, .miz-flow-step, .miz-faq-item, .miz-page-card) :is(p, li, span):not(.miz-btn-icon):not(.miz-pill):not(.miz-kicker),
.miz-surface-dark :is(.miz-info-card, .miz-service-card, .miz-flow-step, .miz-faq-item, .miz-page-card) :is(p, li, span):not(.miz-btn-icon):not(.miz-pill):not(.miz-kicker){
  color: rgba(235, 244, 255, .76);
}
.miz-bg-dark :is(.miz-info-card, .miz-service-card, .miz-flow-step, .miz-faq-item, .miz-page-card) :is(h2, h3, strong),
.miz-section-problem :is(.miz-info-card, .miz-service-card, .miz-flow-step, .miz-faq-item, .miz-page-card) :is(h2, h3, strong),
.miz-surface-dark :is(.miz-info-card, .miz-service-card, .miz-flow-step, .miz-faq-item, .miz-page-card) :is(h2, h3, strong){
  color: #fff;
}
.miz-btn :is(svg, i),
.miz-nav-link :is(svg, i),
.miz-mobile-menu :is(svg, i),
.miz-footer :is(svg, i){
  color: currentColor;
}
.miz-btn-primary,
.miz-btn-primary *,
.miz-nav-cta,
.miz-nav-cta *{
  color: #fff !important;
}
.miz-btn-secondary{
  color: #071325 !important;
}
.miz-bg-dark .miz-btn-secondary,
.miz-surface-dark .miz-btn-secondary,
.miz-section-problem .miz-btn-secondary{
  color: #fff !important;
}
.miz-footer{
  background:
    radial-gradient(circle at 14% 0%, rgba(10, 132, 255, .18), transparent 30%),
    radial-gradient(circle at 88% 92%, rgba(37, 211, 102, .08), transparent 28%),
    linear-gradient(180deg, #071325 0%, #020813 100%);
}
.miz-footer-list a:hover,
.miz-footer-socials-inline a:hover{
  color: #fff;
  background: rgba(10, 132, 255, .12);
}


@media (hover: none), (pointer: coarse) {
  .miz-info-card:hover,
  .miz-service-card:hover,
  .miz-flow-step:hover,
  .miz-handshake-tile:hover,
  .miz-branch-tile:hover,
  .miz-faq-item:hover,
  .miz-page-card:hover,
  .miz-page-state-card:hover,
  .miz-page-related-link:hover,
  .miz-nav-cta:hover {
    transform: none;
  }
}


/* ============================================================
   MIZ FINAL MOBILE NAV
   Reduziertes Header-Menue mit eigenem Scroll-Container.
   ============================================================ */
body.miz-menu-lock{
  overflow: hidden;
  touch-action: none;
}
.miz-mobile-menu{
  grid-template-columns: minmax(0, 1fr) minmax(0, .82fr);
  max-height: min(68vh, 440px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}


@media (max-width: 540px) {
  .miz-mobile-menu {
    grid-template-columns: 1fr;
    max-height: min(72vh, 520px);
    gap: 10px;
  }

  .miz-mobile-menu__cta {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   MIZ MASTER GUARD 2026-06
   Finaler Kaskaden-Schutz fuer WordPress/Elementor:
   - keine hellen Karten mit heller Schrift
   - keine dunklen Sections mit dunkler Headline
   - CTA-Icons folgen der Button-Farbe
   - Footer/Mobile-Menue bleiben kompakt und scrollbar
   ============================================================ */
.miz-page :where(.miz-section:not(.miz-section-light):not(.miz-section-contact):not(#vertrauen),
.miz-section-problem,
.miz-section-faq) :where(.miz-section-head h1,
.miz-section-head h2,
.miz-section-head h3,
.miz-section-head-dark h1,
.miz-section-head-dark h2,
.miz-section-head-dark h3),
.miz-page :where(.miz-section:not(.miz-section-light):not(.miz-section-contact):not(#vertrauen),
.miz-section-problem,
.miz-section-faq) :where(.miz-section-head p,
.miz-section-head-dark p){
  color: #f7fbff !important;
}
.miz-page :where(.miz-section-light, .miz-section-contact, #vertrauen) :where(.miz-section-head h1, .miz-section-head h2, .miz-section-head h3, .miz-kontakt__title),
.miz-page :where(.miz-section-light, .miz-section-contact, #vertrauen) :where(.miz-profile__name, .miz-branch-tile strong, .miz-handshake-tile h3, .miz-service-card h3, .miz-info-card h3){
  color: #071325 !important;
}
.miz-page :where(.miz-section-light, .miz-section-contact, #vertrauen) :where(.miz-section-head p, .miz-profile__bio, .miz-profile__handle, .miz-branch-tile span, .miz-handshake-tile p, .miz-handshake-tile li, .miz-service-card p, .miz-info-card p, .miz-kontakt__sub, .miz-kontakt__form-sub){
  color: rgba(22, 36, 58, .78) !important;
}
.miz-page :where(.miz-profile, .miz-kontakt__form-card, .miz-outcome, .miz-page-card, .miz-page-meta, .miz-legal-toc a){
  color: #071325;
  background-color: rgba(255, 255, 255, .88);
}
.miz-page :where(.miz-profile, .miz-kontakt__form-card, .miz-outcome, .miz-page-card, .miz-page-meta, .miz-legal-toc a) :where(h1, h2, h3, h4, strong, label){
  color: #071325 !important;
}
.miz-page :where(.miz-profile, .miz-kontakt__form-card, .miz-outcome, .miz-page-card, .miz-page-meta, .miz-legal-toc a) :where(p, li, span):not(.miz-pill):not(.miz-btn-icon):not(.miz-kontakt__submit-label):not(.miz-kontakt__accent){
  color: rgba(22, 36, 58, .76) !important;
}
/* Kontrast-Fix: dunkle Sub-Komponenten innerhalb einer .miz-page-card
   (Quote-Aside, Related-Bild-Card) brauchen hellen Text auf dunklem Grund.
   Der generische Card-Hotfix oben faerbt sie sonst dunkel-auf-dunkel. */
.miz-page :where(.miz-page-quote, .miz-page-related-card) :where(h1, h2, h3, h4, strong, label, b){
  color: #fff !important;
}
.miz-page .miz-page-quote span:not(.miz-pill):not(.miz-btn-icon):not(.miz-kontakt__submit-label):not(.miz-kontakt__accent),
.miz-page .miz-page-related-card span:not(.miz-pill):not(.miz-btn-icon):not(.miz-kontakt__submit-label):not(.miz-kontakt__accent){
  color: rgba(235, 243, 255, .86) !important;
}
.miz-page .miz-page-related-card small{
  color: #fff !important;
}
.miz-page :where(.miz-section-problem,
.miz-section-faq) :where(.miz-section-cta,
.miz-flow-step,
.miz-faq-item){
  color: #f7fbff;
}
.miz-page :where(.miz-section-problem,
.miz-section-faq) :where(.miz-section-cta h3,
.miz-section-cta strong,
.miz-flow-step h3,
.miz-faq-item h3){
  color: #fff !important;
}
.miz-page :where(.miz-section-problem,
.miz-section-faq) :where(.miz-section-cta p,
.miz-section-cta span:not(.miz-btn-icon),
.miz-flow-step p,
.miz-flow-step li,
.miz-faq-item p){
  color: rgba(235, 244, 255, .82) !important;
}
.miz-btn,
.miz-btn *,
.miz-kontakt__submit,
.miz-kontakt__submit *,
.miz-nav-cta,
.miz-nav-cta *{
  text-decoration-color: currentColor;
}
.miz-btn :where(svg, i),
.miz-kontakt__submit :where(svg, i),
.miz-nav :where(svg, i),
.miz-footer :where(svg, i),
.miz-mobile-menu :where(svg, i){
  color: currentColor !important;
  stroke: currentColor;
}
.miz-btn-primary,
.miz-btn-primary :where(span,
svg,
i,
path),
.miz-kontakt__submit,
.miz-kontakt__submit :where(span,
svg,
i,
path),
.miz-nav-cta,
.miz-nav-cta :where(span,
svg,
i,
path),
svg,
i,
path){
  color: #fff !important;
}
.miz-btn-secondary,
.miz-btn-secondary :where(span, svg, i, path){
  color: #071325 !important;
}
.miz-section-problem .miz-btn-ghost,
.miz-section-problem .miz-btn-ghost :where(span, svg, i, path),
.miz-bg-dark .miz-btn-ghost,
.miz-bg-dark .miz-btn-ghost :where(span, svg, i, path),
.miz-section-faq .miz-btn-ghost,
.miz-section-faq .miz-btn-ghost :where(span, svg, i, path){
  color: #f7fbff !important;
}
.miz-kontakt__field-icon,
.miz-kontakt__field-icon :where(svg, path, circle, rect),
.miz-kontakt__check-mark,
.miz-kontakt__check-mark :where(svg, path){
  color: #0a84ff !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.miz-honeypot,
.miz-honeypot input{
  position: fixed !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
button,
span,
p,
li){
  overflow-wrap: anywhere;
}


@media (max-width: 720px) {
  .miz-footer {
    padding-top: 48px;
  }

  .miz-footer-top {
    gap: 16px;
  }

  .miz-footer-premium-grid {
    gap: 12px;
  }

  .miz-footer-card {
    padding: 18px;
  }

  .miz-footer-card p {
    max-width: none;
  }

  .miz-footer-legalbar {
    gap: 14px;
  }

  .miz-footer-legalbar nav {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 8px;
  }

  .miz-footer-legalbar :where(a, button) {
    justify-content: center;
    min-height: 42px;
  }
}


/* MIZ-FIX 2026-06-02: Problem-/Loesung-Card Visuals
   Spaete Dark-Mode- und Overlay-Regeln hatten Card-Grafiken bzw. Mockup-Texte
   in einzelnen Systemmodi verdeckt oder falsch eingefarbt. */
.miz-section-problem .miz-info-card::after{
  z-index: 0;
  opacity: .72;
}
.miz-section-problem .miz-info-media{
  z-index: 2;
}
.miz-section-problem .miz-info-body{
  position: relative;
  z-index: 3;
}

.miz-section-problem .miz-info-media::after{
  opacity: .72;
}
.miz-section-light .miz-service-card--premium{
  color: #071325 !important;
  background: linear-gradient(180deg, #ffffff, #f7faff) !important;
  border-color: rgba(10, 28, 48, .08) !important;
}
.miz-section-light .miz-service-card--premium h3{
  color: #071325 !important;
}


/* MIZ-FIX 2026-06-03: echtes iPhone-Mockup fuer Problem-Card 01 */
.miz-stage[data-stage="silent"] .miz-phone3d{
  width: clamp(146px, 14vw, 174px);
  aspect-ratio: 560 / 824;
  margin: clamp(-126px, -11vw, -112px) 0 0 clamp(-84px, -7vw, -72px);
  transform: rotateX(5deg) rotateY(-8deg) rotateZ(-1deg) translateZ(20px);
  transition: transform .42s var(--miz-ease), filter .42s var(--miz-ease);
}
.miz-info-card:hover .miz-stage[data-stage="silent"] .miz-phone3d{
  filter: saturate(1.08) contrast(1.04);
  transform: rotateX(4deg) rotateY(-5deg) rotateZ(-.3deg) translateY(-6px) translateZ(32px) scale(1.018);
}
.miz-stage[data-stage="silent"] .miz-phone3d__frame{
  z-index: 3;
}
.miz-stage[data-stage="silent"] .miz-phone3d__screen{
  left: 9.5%;
  top: 8.8%;
  width: 78%;
  height: 80.5%;
  clip-path: polygon(10% 0, 100% 3%, 91% 100%, 0 97%);
  transform: skewY(-2deg) rotate(-.8deg);
}


@media (max-width: 720px) {
  .miz-stage[data-stage="silent"] .miz-phone3d {
    width: clamp(146px, 44vw, 174px);
    margin: -126px 0 0 -76px;
  }

  .miz-stage[data-stage="silent"] .miz-phone3d__count {
    font-size: clamp(58px, 15vw, 76px);
  }
}

/* MIZ-FIX 2026-06-04: Problem-Card 01 als ruhiges Nachfrage-Panel.
   Botschaft: Sie sind online sichtbar, aber daraus entsteht noch keine Anfrage. */
/* ============================================================
   MIZ CARDPHONE — kompaktes, realistisches iPhone für Card-Slots
   Gleiche Designsprache wie .miz-device in pages.css (Titanium-
   Rahmen, Dynamic Island, Lichtkante), aber card-passend (~168px).
   Markup:
     .miz-cardphone
       .miz-cardphone__island
       .miz-cardphone__screen
         .miz-cardphone__status / __hero / __rows
   Eingesetzt im .miz-stage[data-stage="silent"] (Problem-Card #1).
   Schmerzbild: gedämpfter grauer Screen, "0 Anrufe heute", Stille.
   Tokens: --miz-ease aus miz-core.css. Nur lokale Farben.
   ============================================================ */
.miz-stage[data-stage="silent"] .miz-cardphone{
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  /* Höhe-basiert: passt immer in die Slot-Höhe, kein Clipping */
  height: min(82%, 286px);
  aspect-ratio: 9 / 19;
  padding: 6px;
  border-radius: 30px;
  /* Titanium-Rahmen mit Lichtkante (analog .miz-device) */
  background:
    linear-gradient(150deg, #6d7889 0%, #39414f 26%, #1c222e 60%, #434b59 100%);
  box-shadow:
    0 38px 70px rgba(2, 8, 19, .58),
    0 16px 32px rgba(2, 8, 19, .42),
    inset 0 1.5px 1.5px rgba(255, 255, 255, .28),
    inset 0 -1.5px 2px rgba(0, 0, 0, .55),
    inset 0 0 0 1px rgba(0, 0, 0, .35);
  transform: translate(-50%, -50%) rotate(-4deg) translateZ(0);
  transition: transform .7s var(--miz-ease, cubic-bezier(.16, 1, .3, 1));
  will-change: transform;
}
/* feine innere Glanzkante (Aluminium-Reflex) */
.miz-stage[data-stage="silent"] .miz-cardphone::before{
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(150deg, rgba(255, 255, 255, .55), rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0) 72%, rgba(255, 255, 255, .22));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 4;
}
.miz-info-card:hover .miz-stage[data-stage="silent"] .miz-cardphone{
  transform: translate(-50%, -50%) rotate(0deg) translateZ(0);
}

/* Dynamic Island */
.miz-cardphone__island{
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 16px;
  background: #04070d;
  border-radius: 999px;
  z-index: 5;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
}
.miz-cardphone__island::after{
  content: "";
  position: absolute;
  top: 50%;
  right: 20%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #233a52 0 38%, #060a12 60%);
}

/* Screen — gedämpft/grau (Schmerz) */
.miz-cardphone__screen{
  position: relative;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 22px 13px 16px;
  color: #cbd6e4;
  background: linear-gradient(180deg, #20262f 0%, #141921 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .05);
}
.miz-cardphone__status{
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: -.01em;
  color: rgba(203, 214, 228, .72);
}
.miz-cardphone__sig{
  display: inline-grid;
  place-items: center;
}
.miz-cardphone__sig i{ font-size: 13px; color: rgba(203, 214, 228, .5); }
.miz-cardphone__hero{
  flex: 1 1 auto;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 2px;
}
.miz-cardphone__hero strong{
  font-size: 58px;
  line-height: .82;
  font-weight: 900;
  letter-spacing: -.06em;
  color: #eef3fa;
  text-shadow: 0 8px 24px rgba(0, 0, 0, .5);
}
.miz-cardphone__hero span{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .01em;
  color: rgba(176, 189, 205, .8);
}
.miz-cardphone__rows{
  display: grid;
  gap: 6px;
}
.miz-cardphone__row{
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 26px;
  padding: 5px 8px;
  border-radius: 10px;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.18;
  color: rgba(199, 211, 226, .78);
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .05);
}
.miz-cardphone__row i{
  font-size: 13px;
  flex-shrink: 0;
  color: rgba(160, 176, 196, .6);
}

@media (max-width: 720px){
  .miz-stage[data-stage="silent"] .miz-cardphone{
    height: min(86%, 300px);
  }
}

@media (prefers-reduced-motion: reduce){
  .miz-stage[data-stage="silent"] .miz-cardphone,
  .miz-info-card:hover .miz-stage[data-stage="silent"] .miz-cardphone{
    transform: translate(-50%, -50%) rotate(-4deg);
    transition: none;
  }
}
.miz-section-light .miz-service-card--premium p{
  color: rgba(10, 28, 48, .72) !important;
}
.miz-section-light .miz-service-card--premium a:not(.miz-btn){
  color: #071325 !important;
}
.miz-section-light .miz-service-card--premium a:not(.miz-btn):hover{
  color: #ffffff !important;
}
.miz-service-mockup :is(strong, em, span, b),
.miz-mockup-map__card :is(strong, em, span),
.miz-mockup-social :is(strong, em, span),
.miz-mockup-browser :is(strong, em, span, b){
  color: inherit;
}
.miz-mockup-browser,
.miz-mockup-map,
.miz-mockup-social{
  color: #102033;
}
.miz-mockup-browser__banner-copy :is(strong, em),
.miz-mockup-browser__btn--primary,
.miz-mockup-map__btn--primary{
  color: #ffffff !important;
}
.miz-mockup-map__card,
.miz-mockup-social{
  color: #102033 !important;
}

/* Wiederhergestellt: fehlende Mobile-Menu + Footer Klassen */
.miz-footer-link-button:hover {
  color: #fff;
  transform: translateX(3px);
}
.miz-footer-link-button {
  appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(247, 251, 255, .68);
  font: inherit;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
  transition: color .18s var(--miz-ease), transform .18s var(--miz-ease);
}
.miz-footer-link-button:focus-visible {
  outline: 2px solid rgba(158, 208, 255, .7);
  outline-offset: 4px;
  border-radius: 6px;
}
.miz-mobile-menu__cta .miz-mobile-menu__call {
  color: #0b3d24;
  background: #fff;
  border-color: rgba(37, 211, 102, .72);
  box-shadow:
    0 12px 28px rgba(37, 211, 102, .13),
    inset 0 0 0 1px rgba(37, 211, 102, .20);
}
.miz-mobile-menu__cta .miz-mobile-menu__call i {
  color: #128c4a;
}
.miz-mobile-menu__cta .miz-mobile-menu__whatsapp {
  color: #fff;
  background: linear-gradient(135deg, #25d366, #128c4a);
  border-color: rgba(255, 255, 255, .78);
  box-shadow:
    0 16px 34px rgba(37, 211, 102, .22),
    inset 0 1px 0 rgba(255, 255, 255, .22);
}
.miz-mobile-menu__cta .miz-mobile-menu__whatsapp i {
  color: #fff;
}

/* Wiederhergestellt: miz-phone-clean + miz-footer-label */
.miz-phone-clean {
  position: relative;
  width: clamp(150px, 18vw, 200px);
  margin: 18px auto;
  padding: 8px;
  border-radius: clamp(28px, 3vw, 38px);
  background: linear-gradient(180deg, #1a2638, #0c1828);
  box-shadow:
    0 32px 72px rgba(0, 0, 0, .42),
    0 12px 26px rgba(0, 0, 0, .28),
    inset 0 1px 0 rgba(255, 255, 255, .14),
    inset 0 -1px 0 rgba(0, 0, 0, .42);
  isolation: isolate;
  transform: rotate(-3deg);
}
.miz-phone-clean__notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 16px;
  border-radius: 999px;
  background: #050b16;
  z-index: 3;
}
.miz-phone-clean__screen {
  border-radius: clamp(22px, 2.4vw, 30px);
  background: linear-gradient(180deg, #fff, #f5f9fd);
  padding: 26px 14px 18px;
  overflow: hidden;
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif;
}
.miz-phone-clean__status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 900;
  color: #0c1828;
  letter-spacing: -.01em;
}
.miz-phone-clean__status-right {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #0c1828;
}
.miz-phone-clean__status-right svg {
  width: 12px;
  height: 9px;
}
.miz-phone-clean__status-right svg:nth-child(3) {
  width: 17px;
}
.miz-phone-clean__title {
  font-size: 13px;
  font-weight: 800;
  color: rgba(10, 28, 48, .56);
  margin-bottom: 6px;
}
.miz-phone-clean__metric {
  display: grid;
  gap: 2px;
  margin-bottom: 14px;
}
.miz-phone-clean__metric strong {
  font-size: 38px;
  font-weight: 950;
  color: var(--miz-text);
  letter-spacing: -.04em;
  line-height: 1;
}
.miz-phone-clean__metric span {
  font-size: 10.5px;
  font-weight: 700;
  color: rgba(10, 28, 48, .55);
}
.miz-phone-clean__empty {
  display: grid;
  gap: 6px;
  padding: 14px 10px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 122, 89, .12), rgba(255, 122, 89, .04));
  border: 1px solid rgba(255, 122, 89, .20);
  text-align: center;
  justify-items: center;
}
.miz-phone-clean__empty-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #d04826;
  background: rgba(255, 122, 89, .14);
}
.miz-phone-clean__empty-icon svg {
  width: 20px;
  height: 20px;
}
.miz-phone-clean__empty strong {
  font-size: 12px;
  font-weight: 900;
  color: #b53a1a;
}
.miz-phone-clean__empty span {
  font-size: 10px;
  font-weight: 700;
  color: rgba(180, 60, 30, .68);
}
.miz-phone-clean__shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, .14) 0%, transparent 30%, transparent 70%, rgba(255, 255, 255, .04) 100%);
  z-index: 4;
}
  .miz-phone-clean {
    transform: none;
  }
.miz-footer-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  color: #c7e2ff;
  background: rgba(10, 132, 255, .13);
  border: 1px solid rgba(158, 208, 255, .16);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.miz-footer-label i {
  color: #fff;
  font-size: 15px;
}
