@font-face {
  font-family: "Work Sans";
  src: url("./fonts/work-sans/WorkSans-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  color-scheme: light;
  --bg: #edf1f6;
  --bg-deep: #e5ebf2;
  --text: #0b1220;
  --muted: #4e5f78;
  --card: #fdfefe;
  --line: rgba(124, 138, 157, 0.3);
  --line-strong: rgba(106, 122, 145, 0.48);
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-bg-strong: rgba(255, 255, 255, 0.9);
  --glass-bg-soft: rgba(246, 250, 254, 0.8);
  --glass-shadow: 0 18px 46px rgba(14, 25, 44, 0.13), 0 2px 10px rgba(14, 25, 44, 0.06);
  --glass-shadow-soft: 0 10px 26px rgba(14, 25, 44, 0.1), 0 1px 4px rgba(14, 25, 44, 0.05);
  --glass-inner: inset 0 1px 0 rgba(255, 255, 255, 0.76);
  --glass-blur: 16px;
  --focus-ring: rgba(54, 117, 240, 0.42);
  --action-blue: #2f6df7;
  --action-cyan: #3dd4ff;
  --action-orange: #f3a642;
  --action-gold: #c2892e;
  --primary-bg: linear-gradient(136deg, #3f79fb 0%, #2f6df7 38%, #2b58d7 100%);
  --primary-border: rgba(31, 73, 173, 0.75);
  --primary-shadow: 0 16px 30px rgba(36, 80, 182, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  --primary-text: #f7fbff;
  --accent: #8c6a2f;
  --accent-strong: #6e5224;
  --gold: #a4864f;
  --red: #d93b22;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Work Sans", sans-serif;
  color: var(--text);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background:
    radial-gradient(1200px 700px at 50% -22%, rgba(255, 255, 255, 0.56) 0%, rgba(255, 255, 255, 0) 70%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  background-attachment: fixed;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: -20% -12%;
  pointer-events: none;
  z-index: -1;
  opacity: 0.34;
  background:
    radial-gradient(600px 430px at 14% 22%, rgba(152, 166, 187, 0.2) 0%, rgba(152, 166, 187, 0) 72%),
    radial-gradient(640px 460px at 86% 14%, rgba(178, 188, 204, 0.16) 0%, rgba(178, 188, 204, 0) 74%);
  animation: ambient-drift 18s ease-in-out infinite alternate;
}

body.intro-open {
  overflow: hidden;
}

.intro-landing {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 36px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .26s ease;
  overflow-y: auto;
}

.intro-landing[hidden] {
  display: none !important;
}

.intro-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(920px 560px at 8% 0%, rgba(166, 180, 200, 0.22) 0%, rgba(166, 180, 200, 0) 74%),
    radial-gradient(860px 460px at 92% 100%, rgba(188, 196, 210, 0.18) 0%, rgba(188, 196, 210, 0) 72%),
    linear-gradient(180deg, rgba(243, 247, 252, 0.93) 0%, rgba(231, 237, 245, 0.9) 100%);
}

.intro-shell {
  position: relative;
  width: min(1180px, 100%);
  border-radius: 26px;
  border: 1px solid rgba(104, 136, 182, 0.62);
  background: linear-gradient(164deg, rgba(255, 255, 255, 0.9) 0%, rgba(239, 246, 255, 0.78) 46%, rgba(230, 241, 255, 0.75) 100%);
  box-shadow: 0 34px 72px rgba(16, 31, 53, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  padding: clamp(24px, 3.4vw, 44px);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: clamp(20px, 2.6vw, 40px);
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  opacity: 0;
  transform: translateY(16px) scale(0.985);
  transition: transform .34s cubic-bezier(0.22, 0.61, 0.36, 1), opacity .34s ease;
}

.intro-shell::before {
  content: "";
  position: absolute;
  top: -130px;
  right: -112px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(64, 123, 243, 0.22) 0%, rgba(64, 123, 243, 0) 72%);
  pointer-events: none;
}

.intro-shell::after {
  content: "";
  position: absolute;
  left: -110px;
  bottom: -170px;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 171, 76, 0.24) 0%, rgba(244, 171, 76, 0) 73%);
  pointer-events: none;
}

.intro-brandline {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 8px;
  min-height: 56px;
  width: fit-content;
  max-width: 100%;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(122, 147, 180, 0.42);
  background: linear-gradient(158deg, rgba(255, 255, 255, 0.95) 0%, rgba(237, 246, 255, 0.86) 100%);
  box-shadow: 0 8px 16px rgba(20, 41, 68, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.88);
  color: #233a59;
}

.intro-brandline-logo {
  width: 100%;
  max-width: min(520px, 100%);
  margin: 0 auto 10px;
  justify-content: center;
  padding: 0;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.intro-brandline-logo-art {
  display: block;
  width: min(860px, 90vw);
  max-width: 100%;
  height: auto;
  max-height: 248px;
}

.intro-brandline-logo-art[src*="zimmermann-logo-"] {
  width: min(990px, 94vw);
  max-height: 292px;
}

.intro-brandline-mark {
  width: 56px;
  height: 46px;
  object-fit: contain;
  flex-shrink: 0;
}

.intro-brandline-mark.mirror-x {
  transform: scaleX(-1);
}

.intro-brandline-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.intro-brandline-domain {
  display: block;
  font-size: clamp(34px, 2.45vw, 44px);
  line-height: 0.98;
  font-weight: 880;
  letter-spacing: 0.008em;
}

.intro-brandline-domain .dot {
  color: #886a30;
}

.intro-brandline-subline {
  display: block;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #506887;
}

.intro-copy {
  position: relative;
  z-index: 1;
  padding-right: 0;
  max-width: 560px;
}

.intro-headline {
  grid-column: 1 / -1;
  margin: 2px auto 4px;
  width: 100%;
  max-width: min(960px, 100%);
  font-size: clamp(36px, 4.15vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.016em;
  text-wrap: balance;
  color: #102139;
  text-align: center;
}

.intro-headline strong {
  color: #a67323;
  font-weight: 900;
}

.intro-copy > p:not(.intro-promise) {
  margin: 16px 0 0;
  font-size: clamp(20px, 1.9vw, 24px);
  line-height: 1.36;
  max-width: 30ch;
  color: #395271;
}

.intro-copy .intro-promise {
  margin: 14px 0 0;
  max-width: 37ch;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(116, 142, 177, 0.42);
  background: linear-gradient(159deg, rgba(251, 255, 255, 0.96) 0%, rgba(234, 243, 255, 0.88) 100%);
  box-shadow: 0 7px 14px rgba(17, 36, 60, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.3;
  color: #204061;
  text-wrap: pretty;
}

.intro-copy .intro-promise strong {
  color: #0f2a4b;
}

.intro-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.intro-actions .btn {
  min-width: 220px;
  min-height: 50px;
  font-size: 16px;
  text-align: center;
}

.intro-consent-actions {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 10px;
  margin-top: 22px;
  padding: 12px;
  border: 1px solid rgba(101, 136, 188, 0.44);
  border-radius: 16px;
  background: linear-gradient(165deg, rgba(246, 252, 255, 0.92) 0%, rgba(236, 247, 255, 0.86) 64%, rgba(249, 241, 228, 0.74) 100%);
  box-shadow: 0 8px 18px rgba(25, 52, 89, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.intro-consent-actions::before {
  content: "Start und Cookie-Einstellung";
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #496283;
  padding: 0 2px;
}

.intro-decision {
  min-width: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  border-radius: 14px;
  padding: 10px 14px;
  text-align: left;
  width: 100%;
}

.intro-consent-actions .btn {
  min-width: 0;
  width: 100%;
  min-height: 0;
}

.intro-decision-primary {
  flex: 1 1 100%;
  border-color: rgba(31, 73, 173, 0.75);
}

.intro-decision-secondary {
  flex: 1 1 100%;
  border-color: rgba(125, 150, 185, 0.5);
}

.intro-decision-title {
  display: block;
  font-size: 17px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: inherit;
}

.intro-decision-note {
  display: block;
  font-size: 11px;
  line-height: 1.28;
  font-weight: 700;
  letter-spacing: 0.01em;
  opacity: 0.86;
}

.intro-decision-secondary .intro-decision-title {
  font-size: 17px;
}

.intro-cookie-hint {
  margin: 16px 0 0;
  padding-top: 12px;
  width: 100%;
  max-width: 560px;
  border-top: 1px solid rgba(137, 161, 190, 0.38);
  font-size: 13px;
  line-height: 1.42;
  color: #4e6180;
  display: grid;
  gap: 10px;
}

.intro-cookie-hint-text {
  display: block;
}

.intro-cookie-meta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.intro-legal-links {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
}

.intro-legal-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 13px;
  border-radius: 999px;
  border: 1px solid rgba(121, 149, 183, 0.42);
  background: linear-gradient(156deg, rgba(255, 255, 255, 0.94) 0%, rgba(239, 247, 255, 0.9) 100%);
  color: #214f9f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  text-underline-offset: 2px;
  box-shadow: 0 4px 10px rgba(25, 47, 76, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.intro-legal-links a:hover {
  transform: translateY(-1px);
  background: linear-gradient(156deg, rgba(255, 255, 255, 0.98) 0%, rgba(231, 243, 255, 0.94) 100%);
  color: #173f84;
  box-shadow: 0 6px 13px rgba(25, 47, 76, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.intro-insurer-strip {
  min-width: 0;
  width: 100%;
}

.intro-insurer-marquee {
  border-radius: 999px;
  border-color: rgba(123, 146, 175, 0.38);
  background: linear-gradient(158deg, rgba(255, 255, 255, 0.93) 0%, rgba(236, 245, 255, 0.84) 100%);
  box-shadow: 0 5px 11px rgba(20, 40, 67, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.intro-insurer-marquee .insurer-marquee-track {
  animation-duration: 28s;
}

.intro-insurer-marquee .insurer-marquee-group {
  padding: 5px 7px;
  gap: 6px;
}

.intro-insurer-marquee .insurer-chip {
  min-width: 78px;
  min-height: 26px;
  padding: 4px 9px;
  border-color: rgba(133, 155, 183, 0.34);
  background: rgba(255, 255, 255, 0.86);
}

.intro-insurer-marquee .insurer-chip img {
  height: 12px;
  max-width: 62px;
}

.intro-guide {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  display: grid;
  justify-items: end;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  justify-content: flex-end;
  align-self: stretch;
  gap: 0;
  min-height: clamp(232px, 22vw, 300px);
  margin-left: 0;
  margin-top: 0;
  opacity: 0;
  transform: translateY(18px);
  transition: transform .32s cubic-bezier(0.22, 0.61, 0.36, 1) .08s, opacity .32s ease .08s;
}

.intro-guide .floating-guide-trigger {
  position: relative;
  z-index: 1;
}

.intro-guide .floating-guide-figure {
  width: clamp(164px, 16vw, 242px);
}

.intro-guide .floating-bubble {
  position: absolute;
  top: clamp(-30px, -2.1vw, -12px);
  left: clamp(-14px, -1vw, -4px);
  max-width: min(226px, 17vw);
  border-radius: 26px;
  padding: 11px 14px 10px;
  margin: 0;
  border: 2px solid rgba(44, 69, 102, 0.55);
  box-shadow: 0 16px 34px rgba(15, 29, 48, 0.18), var(--glass-inner);
  opacity: 0.98;
  transform: translateY(0);
  font-size: 12.5px;
  background: linear-gradient(168deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 251, 255, 0.94) 100%);
  z-index: 2;
  isolation: isolate;
}

.intro-guide .floating-bubble > * {
  position: relative;
  z-index: 2;
}

.intro-guide .floating-bubble [data-role="case-title"] {
  font-size: 13px;
  line-height: 1.2;
  margin-bottom: 6px;
  color: #10233f;
}

.intro-guide .floating-bubble [data-role="case-line1"] {
  font-size: 11.5px;
  line-height: 1.32;
  color: #2f4d72;
  font-weight: 700;
}

.intro-guide .floating-bubble [data-role="case-line2"] {
  font-size: 11.5px;
  line-height: 1.34;
  color: #355374;
}

.intro-guide .floating-bubble [data-role="case-line3"] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  line-height: 1.14;
  font-weight: 900;
  color: #10233f;
  letter-spacing: 0.01em;
  padding: 2px 10px 3px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(239, 197, 88, 0.34), rgba(226, 161, 30, 0.2));
  box-shadow: inset 0 0 0 1px rgba(198, 142, 36, 0.2);
}

.intro-guide .floating-bubble p + p {
  margin-top: 3px;
}

.intro-guide .floating-bubble::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  right: -16px;
  top: 70%;
  border-radius: 50%;
  border: 2px solid rgba(44, 69, 102, 0.55);
  background: rgba(255, 255, 255, 0.98);
  z-index: 1;
  pointer-events: none;
}

.intro-guide .floating-bubble::after {
  width: 13px;
  height: 13px;
  right: -7px;
  left: auto;
  top: 63%;
  bottom: auto;
  border-right: 2px solid rgba(44, 69, 102, 0.55);
  border-bottom: 2px solid rgba(44, 69, 102, 0.55);
  border-top: 0;
  border-left: 0;
  border-radius: 0 5px 0 0;
  transform: rotate(-12deg);
  background: rgba(255, 255, 255, 0.98);
  z-index: 1;
  pointer-events: none;
}

.intro-landing.is-active {
  opacity: 1;
  pointer-events: auto;
}

.intro-landing.is-active .intro-shell {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.intro-landing.is-active .intro-guide {
  opacity: 1;
  transform: translateY(0);
}

.intro-landing.is-closing {
  opacity: 0;
  pointer-events: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid transparent;
  box-shadow: 0 0 0 3px var(--focus-ring);
  outline-offset: 2px;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(168deg, rgba(250, 252, 255, 0.92) 0%, rgba(240, 245, 250, 0.88) 100%);
  backdrop-filter: saturate(1.15) blur(14px);
  border-bottom: 1px solid rgba(122, 138, 161, 0.36);
  box-shadow: 0 10px 26px rgba(16, 30, 52, 0.11);
}

.insurer-strip {
  width: 100%;
  margin: 0;
}

.insurer-strip-inline {
  margin: 0 0 20px;
}

.insurer-strip-label {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #374459;
}

.insurer-marquee {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.94) 0%, rgba(244, 248, 252, 0.86) 100%);
  box-shadow: var(--glass-shadow-soft), var(--glass-inner);
  backdrop-filter: blur(10px);
}

.insurer-marquee-track {
  display: flex;
  width: max-content;
  animation: insurer-scroll 24s linear infinite;
}

.insurer-marquee-group {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  flex-shrink: 0;
}

.insurer-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: #1e293b;
  min-width: 104px;
  min-height: 34px;
  padding: 6px 12px;
  box-shadow: var(--glass-inner);
}

.insurer-chip::before {
  content: none;
}

.insurer-chip img {
  display: block;
  width: auto;
  height: 18px;
  max-width: 100px;
  object-fit: contain;
}

.insurer-marquee:hover .insurer-marquee-track {
  animation-play-state: paused;
}

@keyframes insurer-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes ambient-drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(2%, -2%, 0) scale(1.03);
  }
}

@keyframes btn-sheen {
  0% {
    left: -55%;
    opacity: 0;
  }
  22% {
    opacity: 0.9;
  }
  45% {
    left: 125%;
    opacity: 0;
  }
  100% {
    left: 125%;
    opacity: 0;
  }
}

@keyframes cta-breathe {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: var(--primary-shadow);
  }
  50% {
    transform: translateY(-1px) scale(1.015);
    box-shadow: 0 20px 40px rgba(36, 80, 182, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  }
}

.topbar-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.brand-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  min-width: 0;
  line-height: 1;
  color: inherit;
  text-decoration: none;
  margin-right: auto;
}

.brand-logo-art {
  display: block;
  width: clamp(280px, 28vw, 430px);
  height: auto;
  max-height: 80px;
}

.brand-logo-art[src*="zimmermann-logo-"] {
  width: clamp(326px, 32vw, 500px);
  max-height: 96px;
}

.brand-logo:focus-visible {
  outline: 2px solid rgba(88, 132, 186, 0.6);
  outline-offset: 4px;
  border-radius: 12px;
}

.brand-logo-mark {
  width: 52px;
  height: 44px;
  object-fit: contain;
  background: transparent;
  border: 0;
  box-shadow: none;
  flex-shrink: 0;
  transform: scaleX(-1);
  transform-origin: center center;
}

.brand-logo-mark.flip-x {
  transform: none;
}

.brand-domain {
  font-family: "Work Sans", sans-serif;
  font-size: clamp(19px, 1.5vw, 25px);
  font-weight: 700;
  letter-spacing: 0.015em;
  color: #0f172a;
  line-height: 1.05;
}

.brand-domain .dot {
  color: #886a30;
  font-style: normal;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  background: rgba(247, 250, 253, 0.86);
  color: #2f425d;
  border-radius: 999px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  box-shadow: var(--glass-inner);
  backdrop-filter: blur(8px);
}

.badge--contact {
  text-decoration: none;
  font-weight: 700;
  color: #1c3f6f;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, color .16s ease;
}

.badge--contact:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  box-shadow: var(--glass-shadow-soft), var(--glass-inner);
  color: #14345d;
}

.badge--contact:focus-visible {
  outline: 2px solid rgba(88, 132, 186, 0.62);
  outline-offset: 2px;
}

.badge--info {
  font-weight: 600;
}

.btn {
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 800;
  padding: 12px 18px;
  min-height: 44px;
  text-decoration: none;
  display: inline-block;
  transition: transform .16s ease, box-shadow .16s ease, opacity .16s ease, background-color .16s ease, border-color .16s ease;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  background: var(--primary-bg);
  color: var(--primary-text);
  border-color: var(--primary-border);
  box-shadow: var(--primary-shadow);
  backdrop-filter: saturate(1.1) blur(8px);
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: -130%;
  left: -45%;
  width: 42%;
  height: 360%;
  transform: rotate(22deg);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.34) 50%, rgba(255, 255, 255, 0) 100%);
  animation: btn-sheen 3.8s ease-in-out infinite;
  pointer-events: none;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(36, 80, 182, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 8px 16px rgba(36, 80, 182, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.btn-danger {
  background: linear-gradient(152deg, #f25b45 0%, #d93b22 100%);
  color: #fff;
  border-color: rgba(167, 38, 18, 0.42);
  box-shadow: 0 10px 24px rgba(217, 59, 34, 0.28);
}

.btn-danger:hover { transform: translateY(-1px); }

.btn-ghost {
  background: var(--glass-bg-strong);
  color: #13213a;
  border: 1px solid var(--line);
  box-shadow: var(--glass-inner);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  box-shadow: var(--glass-shadow-soft), var(--glass-inner);
}


.btn-ghost-accent {
  background: rgba(255, 255, 255, 0.96);
  color: #13213a;
  border-color: rgba(31, 73, 173, 0.42);
  box-shadow: 0 14px 26px rgba(36, 80, 182, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.btn-ghost-accent:hover {
  transform: translateY(-1px);
  border-color: rgba(31, 73, 173, 0.62);
  box-shadow: 0 18px 34px rgba(36, 80, 182, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.btn-ghost-accent:active {
  transform: translateY(0);
  box-shadow: 0 10px 18px rgba(36, 80, 182, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.78);
}
.hero {
  padding: 38px 0 28px;
}

#leistungen,
#beispiele,
#kontakt-schnell {
  scroll-margin-top: 108px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 24px;
  align-items: start;
}

.hero-card,
.card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.9) 0%, rgba(245, 249, 253, 0.82) 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--glass-shadow), var(--glass-inner);
  backdrop-filter: saturate(1.05) blur(var(--glass-blur));
}

.hero-copy {
  padding: 38px 38px 36px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53, 121, 250, 0.22) 0%, rgba(53, 121, 250, 0) 72%);
  pointer-events: none;
}

.hero-copy::after {
  content: "";
  position: absolute;
  left: -120px;
  top: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 173, 79, 0.2) 0%, rgba(245, 173, 79, 0) 72%);
  pointer-events: none;
}

.kicker {
  display: inline-block;
  font-size: 13px;
  color: #364d6f;
  font-weight: 700;
  background: rgba(237, 245, 255, 0.88);
  border: 1px solid rgba(145, 168, 198, 0.48);
  border-radius: 999px;
  padding: 6px 12px;
  margin-bottom: 14px;
}

.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(33px, 2.9vw, 47px);
  line-height: 1.12;
  letter-spacing: -0.018em;
  max-width: 32ch;
  text-wrap: balance;
}

.hero h1 .accent {
  color: #7c6231;
}

.claim {
  font-size: clamp(22px, 1.95vw, 31px);
  font-weight: 900;
  margin: 11px 0 13px;
  color: #111827;
  text-wrap: balance;
}

.claim strong { color: var(--action-gold); }

.topbar .btn.btn-primary,
.intro-decision-primary,
.hero-copy .funnel-actions .btn.btn-primary {
  animation: cta-breathe 2.9s ease-in-out infinite;
}

.sub {
  color: var(--muted);
  font-size: 18.5px;
  line-height: 1.58;
  max-width: 58ch;
  margin: 0;
}

.inline-link {
  margin-top: 8px;
  color: #204ea7;
  font-weight: 700;
  text-underline-offset: 3px;
}

.inline-link:hover {
  color: #173978;
}

.inline-link:focus-visible {
  outline: 2px solid rgba(88, 132, 186, 0.6);
  outline-offset: 3px;
  border-radius: 4px;
}

.trust-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-pill {
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(248, 251, 255, 0.72);
  padding: 8px 12px;
  font-size: 13px;
  color: #324961;
  box-shadow: var(--glass-inner);
}

.page-home .container {
  width: min(1360px, 95vw);
}

.page-home .topbar .container {
  width: min(1360px, 95vw);
}

.page-calculator .topbar .container {
  width: min(1360px, 95vw);
}

@media (min-width: 981px) {
  .topbar .brand-logo-art {
    margin-left: clamp(-108px, -5.8vw, -44px);
  }

  .topbar .brand-logo-art[src*="zimmermann-logo-"] {
    margin-left: clamp(-60px, -3vw, -24px);
  }
}

.page-home .hero {
  padding: 42px 0 32px;
}

.page-home .hero-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(16px, 1.6vw, 24px);
  align-items: stretch;
}

.page-home .hero-copy {
  width: 100%;
  padding: clamp(34px, 2.8vw, 48px);
}

.page-home .hero-copy > * {
  position: relative;
  z-index: 2;
}

.page-home .hero-services-wrap {
  margin-top: clamp(16px, 1.6vw, 26px);
}

.page-home .hero h1 {
  margin: 0 0 16px;
  font-size: clamp(39px, 3.15vw, 56px);
  line-height: 1.05;
  max-width: 23ch;
  letter-spacing: -0.018em;
  text-wrap: balance;
}

.page-home .hero h1 .accent {
  display: inline-block;
  white-space: nowrap;
}

.page-home .claim {
  margin: 17px 0 20px;
  color: #13213a;
}

.page-home .claim .claim-guarantee {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 12px;
  max-width: 100%;
  padding: 10px 19px 11px;
  border-radius: 14px;
  background: linear-gradient(168deg, rgba(255, 255, 255, 0.99) 0%, rgba(245, 250, 255, 0.92) 100%);
  border: 1px solid rgba(122, 146, 175, 0.44);
  box-shadow: 0 10px 22px rgba(16, 34, 58, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  font-size: clamp(23px, 2.05vw, 34px);
  line-height: 1.17;
  font-weight: 900;
  text-wrap: balance;
}

.page-home .claim .claim-main {
  font-weight: 900;
}

.page-home .claim .claim-tail {
  color: #243952;
  font-weight: 800;
}

.page-home .claim .claim-guarantee strong {
  font-size: 1.18em;
  line-height: 1;
  color: #9a6515;
}

.page-home .sub {
  font-size: clamp(17.5px, 1.2vw, 21px);
  line-height: 1.6;
  max-width: 56ch;
}

.page-home .inline-link {
  margin-top: 10px;
  font-size: 18px;
}

.page-home .funnel-actions .btn {
  min-height: 49px;
  padding: 13px 20px;
  font-size: 17.5px;
}

.card.funnel .funnel-actions .btn {
  min-height: 46px;
}

.page-home .trust-row {
  margin-top: 20px;
  gap: 12px;
}

.page-home .trust-pill {
  padding: 8px 14px;
  font-size: 14px;
}

.page-home .hero-services {
  width: 100%;
  max-width: none;
  padding: clamp(28px, 2.3vw, 38px);
  border-radius: 22px;
  position: relative;
  overflow: hidden;
}

.page-home .hero-services::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, rgba(55, 122, 251, 0.18), rgba(55, 122, 251, 0));
  pointer-events: none;
}

.page-home .hero-services h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 2.6vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.012em;
}

.page-home .hero-services p {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.58;
  color: #344f70;
  max-width: 98ch;
}

.page-home .hero-services .checklist {
  gap: 12px;
  margin-top: 16px;
}

.page-home .hero-services .checklist li {
  padding: 14px 16px 14px 50px;
  border-radius: 16px;
  text-align: left;
  font-size: 15px;
  line-height: 1.46;
}

.page-home .hero-services .checklist li strong {
  display: block;
  margin: 0 0 4px;
  font-size: clamp(18px, 1.28vw, 23px);
  line-height: 1.22;
  color: #163b66;
  text-align: left;
  letter-spacing: -0.005em;
}

.page-home .hero-services .checklist li span {
  display: block;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.45;
  color: #37506f;
}

.page-home .hero-services .funnel-actions {
  margin-top: 16px;
}

.page-home #beispiele .container {
  padding: clamp(22px, 2vw, 32px);
}

.section-contact {
  padding-top: 16px;
}

.contact-inline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.9) 0%, rgba(245, 249, 253, 0.82) 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--glass-shadow), var(--glass-inner);
  backdrop-filter: saturate(1.05) blur(var(--glass-blur));
  padding: clamp(18px, 1.8vw, 26px);
}

.contact-inline-card h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 2.1vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.014em;
}

.contact-inline-card p {
  margin: 0 0 10px;
  font-size: 17px;
  color: #324d71;
  line-height: 1.55;
}

.contact-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-inline-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  color: #19385f;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--glass-inner);
}

.contact-inline-links a:hover {
  border-color: var(--line-strong);
  box-shadow: var(--glass-shadow-soft), var(--glass-inner);
}

.contact-inline-links a:focus-visible {
  outline: 2px solid rgba(88, 132, 186, 0.6);
  outline-offset: 3px;
  border-radius: 999px;
}

.contact-inline-cta {
  white-space: nowrap;
}

.page-calculator .container {
  width: min(1360px, 95vw);
}

.page-calculator .hero {
  padding: 34px 0 24px;
}

.page-calculator .hero-grid {
  grid-template-columns: 1fr;
  gap: 0;
}

.page-calculator .hero-copy {
  display: none !important;
}

.page-calculator .card.funnel {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(22px, 2.2vw, 34px);
  border-radius: 22px;
}

.page-calculator .calculator-strip {
  margin: 0 0 16px;
}

.page-calculator .calculator-strip .insurer-marquee {
  border-radius: 14px;
}

.page-calculator .calculator-strip .insurer-chip {
  min-width: 112px;
  min-height: 36px;
}

.page-calculator .step-head {
  margin-bottom: 18px;
}

.floating-guide {
  position: fixed;
  bottom: 14px;
  z-index: 40;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  pointer-events: none;
}

.floating-guide.right {
  right: clamp(10px, 2.4vw, 30px);
}

.floating-guide.left {
  left: clamp(10px, 2.4vw, 30px);
  flex-direction: row-reverse;
}

.floating-guide-figure {
  width: clamp(144px, 13.3vw, 206px);
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 20px rgba(15, 23, 42, 0.18));
  animation: guide-float 3.8s ease-in-out infinite;
  opacity: 0.97;
}

.floating-guide-figure.guide-refresh {
  animation: guide-refresh 0.74s cubic-bezier(0.22, 0.61, 0.36, 1) 1;
  transform-origin: 50% 88%;
}

.floating-guide-trigger {
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  cursor: pointer;
  pointer-events: auto;
  transform: scaleX(-1);
  transform-origin: center bottom;
  transition: transform .2s ease, filter .2s ease;
}

.floating-guide-trigger.mirror-x {
  transform: none;
  transform-origin: center bottom;
}

.floating-guide-trigger:focus-visible {
  outline: 2px solid transparent;
  box-shadow: 0 0 0 3px var(--focus-ring);
  outline-offset: 5px;
  border-radius: 18px;
}

.floating-guide-trigger:hover {
  filter: saturate(1.08) brightness(1.04);
}

.floating-bubble {
  position: relative;
  max-width: min(236px, 30vw);
  border: 1px solid var(--line);
  background: rgba(248, 252, 255, 0.84);
  border-radius: 16px;
  box-shadow: var(--glass-shadow-soft), var(--glass-inner);
  padding: 10px 12px;
  margin-bottom: clamp(74px, 7.4vw, 112px);
  backdrop-filter: blur(10px);
  opacity: 0.86;
  transform: translateY(2px);
  transition: opacity .22s ease, transform .22s ease;
  isolation: isolate;
}

.floating-bubble > * {
  position: relative;
  z-index: 2;
}

.floating-bubble strong {
  display: block;
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 800;
  color: #0f172a;
}

.floating-bubble [data-role="case-title"] {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0;
  text-wrap: balance;
}

.floating-bubble [data-role="case-line1"] {
  font-size: 12.5px;
  line-height: 1.34;
  font-weight: 700;
  text-wrap: balance;
}

.floating-bubble [data-role="case-line2"] {
  font-size: 12px;
  line-height: 1.38;
  white-space: pre-line;
}

.floating-bubble [data-role="case-line3"] {
  display: inline-flex;
  align-items: center;
  margin-top: 2px;
  font-size: 14px;
  line-height: 1.16;
}

.floating-bubble p {
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
  color: #2f455e;
}

.floating-bubble p + p {
  margin-top: 4px;
}

.floating-bubble.bubble-refresh {
  animation: bubble-refresh 0.68s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.floating-guide.right .floating-bubble::after,
.floating-guide.left .floating-bubble::after {
  content: "";
  position: absolute;
  bottom: 18px;
  width: 14px;
  height: 14px;
  background: rgba(248, 252, 255, 0.88);
  z-index: 1;
}

.floating-guide.right .floating-bubble::after {
  right: -8px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transform: rotate(-45deg);
}

.floating-guide.left .floating-bubble::after {
  left: -8px;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transform: rotate(45deg);
}

.floating-guide:hover .floating-bubble,
.floating-guide:focus-within .floating-bubble {
  opacity: 0.96;
  transform: translateY(0);
}

.floating-guide.is-pinned .floating-bubble {
  opacity: 0.96;
  transform: translateY(0);
}

@keyframes guide-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes guide-refresh {
  0% {
    transform: translateY(0) scale(1) rotate(0deg);
  }
  34% {
    transform: translateY(-7px) scale(1.016) rotate(-1.25deg);
  }
  68% {
    transform: translateY(-2px) scale(1.006) rotate(0.75deg);
  }
  100% {
    transform: translateY(0) scale(1) rotate(0deg);
  }
}

@keyframes bubble-refresh {
  0% {
    opacity: 0.96;
    transform: translateY(0) scale(1);
  }
  42% {
    opacity: 0.62;
    transform: translateY(2px) scale(0.992);
  }
  100% {
    opacity: 0.96;
    transform: translateY(0) scale(1);
  }
}

.card.funnel {
  padding: 26px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.86) 0%, rgba(241, 248, 255, 0.68) 100%);
  color: #111827;
  border: 1px solid var(--line);
  box-shadow: var(--glass-shadow), var(--glass-inner);
  backdrop-filter: blur(var(--glass-blur));
}

.step-head {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.step {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1px;
  min-height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(151, 173, 205, 0.58);
  padding: 7px 10px 8px;
  color: #435775;
  background: linear-gradient(180deg, rgba(249, 252, 255, 0.9) 0%, rgba(236, 244, 255, 0.82) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 4px 10px rgba(34, 64, 104, 0.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.step-kicker {
  display: block;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #4f6585;
}

.step-label {
  display: block;
  font-size: 17px;
  line-height: 1.08;
  font-weight: 800;
  color: #2a3f5f;
}

.step.active {
  background: linear-gradient(180deg, rgba(231, 241, 255, 0.98) 0%, rgba(213, 228, 249, 0.92) 100%);
  border-color: rgba(121, 155, 205, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 8px 18px rgba(35, 78, 143, 0.18);
  transform: translateY(-1px);
}

.step.active .step-kicker {
  color: #315784;
}

.step.active .step-label {
  color: #163a66;
}

label {
  font-size: 13px;
  font-weight: 700;
  color: #1d2f49;
  display: block;
  margin: 10px 0 6px;
}

label:has(+ input:focus),
label:has(+ select:focus) {
  color: #163a66;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  min-height: 44px;
  padding: 10px 12px;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.82);
  color: #0f1d33;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(6px);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid transparent;
  border-color: rgba(92, 131, 186, 0.82);
  box-shadow: 0 0 0 3px rgba(74, 123, 198, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

select.product-select-highlight {
  border-color: rgba(87, 126, 182, 0.84);
  box-shadow:
    0 0 0 3px rgba(74, 123, 198, 0.28),
    0 0 0 7px rgba(74, 123, 198, 0.14);
  animation: product-select-pulse 1.2s ease;
}

@keyframes product-select-pulse {
  0% {
    box-shadow:
      0 0 0 0 rgba(74, 123, 198, 0.36),
      0 0 0 0 rgba(74, 123, 198, 0.18);
  }
  100% {
    box-shadow:
      0 0 0 3px rgba(74, 123, 198, 0.18),
      0 0 0 7px rgba(74, 123, 198, 0.08);
  }
}

textarea { min-height: 96px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.inline {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px 10px;
  font-size: 14px;
  background: rgba(248, 252, 255, 0.82);
  color: #233754;
  box-shadow: var(--glass-inner);
}

.check input { width: auto; min-height: auto; }

.funnel-actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
  z-index: 5;
}

#toStep2,
#toStep3 {
  position: relative;
  z-index: 5;
  pointer-events: auto;
}

body:not(.intro-open) .card.funnel {
  position: relative;
  z-index: 10;
}

.result {
  margin-top: 14px;
  border: 1px dashed rgba(122, 149, 182, 0.78);
  background: linear-gradient(170deg, rgba(244, 249, 255, 0.86) 0%, rgba(233, 242, 252, 0.74) 100%);
  border-radius: 14px;
  padding: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.result h3 {
  margin: 0 0 8px;
  color: #24446d;
  font-size: 19px;
  font-weight: 800;
}

.result .big {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 900;
  color: #1e3455;
  line-height: 1.08;
}

.result .muted { color: #6b7280; }

.small-note {
  font-size: 12px;
  color: #4f5d70;
  font-weight: 600;
  margin-top: 12px;
}

.confirm-title {
  margin: 0 0 6px;
  font-size: clamp(19px, 1.6vw, 24px);
  letter-spacing: -0.01em;
  color: #142b49;
}

.confirm-text {
  margin: 0 0 12px;
  color: #445a74;
  font-size: 15px;
  line-height: 1.5;
}

.confirm-summary {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(170deg, rgba(247, 252, 255, 0.88) 0%, rgba(237, 245, 255, 0.78) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
  padding: 10px 12px;
}

.confirm-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(129, 151, 180, 0.4);
}

.confirm-row:last-child {
  border-bottom: 0;
}

.confirm-row span {
  font-size: 13px;
  color: #46607d;
  font-weight: 700;
}

.confirm-row strong {
  font-size: 14px;
  color: #10253f;
  text-align: right;
  max-width: 58%;
  word-break: break-word;
}

.funnel-notice {
  margin-top: 12px;
  border-radius: 12px;
  border: 1px solid rgba(122, 149, 182, 0.42);
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  box-shadow: var(--glass-inner);
}

.funnel-notice.is-error {
  background: linear-gradient(160deg, rgba(255, 236, 233, 0.9) 0%, rgba(255, 226, 220, 0.78) 100%);
  border-color: rgba(209, 95, 68, 0.45);
  color: #7d2210;
}

.funnel-notice.is-success {
  background: linear-gradient(160deg, rgba(236, 255, 244, 0.9) 0%, rgba(223, 249, 233, 0.78) 100%);
  border-color: rgba(70, 155, 101, 0.44);
  color: #1f5e3a;
}

.funnel-notice.is-info {
  background: linear-gradient(160deg, rgba(237, 247, 255, 0.92) 0%, rgba(225, 241, 255, 0.8) 100%);
  border-color: rgba(76, 124, 181, 0.42);
  color: #20466f;
}

body.thanks-page {
  min-height: 100dvh;
}

.thanks-main {
  padding: clamp(18px, 3.8vw, 42px) 0 clamp(30px, 4.4vw, 56px);
}

.thanks-card {
  border: 1px solid rgba(113, 141, 180, 0.5);
  border-radius: 24px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.93) 0%, rgba(236, 245, 255, 0.8) 54%, rgba(227, 239, 255, 0.78) 100%);
  box-shadow: var(--glass-shadow), var(--glass-inner);
  backdrop-filter: blur(12px);
  padding: clamp(20px, 3.4vw, 38px);
}

.thanks-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(16px, 2.4vw, 28px);
  align-items: center;
}

.thanks-kicker {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 820;
  color: #274565;
}

.thanks-title {
  margin: 6px 0 0;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: #112640;
}

.thanks-sub {
  margin: 12px 0 0;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.35;
  color: #355273;
  max-width: 40ch;
}

.thanks-highlight {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(100, 136, 182, 0.48);
  background: linear-gradient(145deg, rgba(245, 252, 255, 0.94) 0%, rgba(231, 244, 255, 0.82) 100%);
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 760;
  color: #1f446f;
}

.thanks-avatar {
  justify-self: center;
  display: grid;
  place-items: center;
}

.thanks-avatar img {
  width: clamp(190px, 26vw, 300px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(14, 27, 46, 0.2));
}

.thanks-meta {
  margin-top: 16px;
  border: 1px solid rgba(120, 150, 185, 0.46);
  border-radius: 14px;
  padding: 11px 12px;
  background: linear-gradient(160deg, rgba(247, 252, 255, 0.94) 0%, rgba(236, 246, 255, 0.84) 100%);
  color: #254a73;
  font-size: 13px;
  font-weight: 700;
  display: grid;
  gap: 4px;
}

.thanks-meta-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #375779;
  font-weight: 700;
}

.thanks-meta-ref {
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: #0f2b4a;
}

.thanks-meta-date {
  font-size: 12px;
  color: #3f6083;
  font-weight: 640;
}

.thanks-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 14px;
}

.thanks-next,
.thanks-summary {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(168deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 248, 255, 0.76) 100%);
  box-shadow: var(--glass-shadow-soft), var(--glass-inner);
  padding: 16px 18px;
}

.thanks-next h2,
.thanks-summary h2 {
  margin: 0 0 10px;
  font-size: clamp(17px, 1.6vw, 21px);
  letter-spacing: -0.01em;
  color: #173456;
}

.thanks-next ol {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 9px;
  line-height: 1.55;
  color: #365274;
  font-weight: 600;
}

.thanks-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(123, 151, 184, 0.42);
}

.thanks-row:last-child {
  border-bottom: 0;
}

.thanks-row span {
  font-size: 13px;
  font-weight: 700;
  color: #466280;
}

.thanks-row strong {
  font-size: 14px;
  text-align: right;
  color: #102844;
  max-width: 58%;
  word-break: break-word;
}

.thanks-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.thanks-actions .btn {
  min-height: 48px;
  padding: 13px 22px;
}

.section {
  padding: 28px 0;
}

.section h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 2.8vw, 34px);
  letter-spacing: -0.012em;
  line-height: 1.1;
  color: #0f172a;
}

.cards3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.infocard {
  border: 1px solid var(--line);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.86) 0%, rgba(242, 248, 255, 0.68) 100%);
  border-radius: 16px;
  padding: 18px;
  color: #0f172a;
  box-shadow: var(--glass-shadow-soft), var(--glass-inner);
  backdrop-filter: blur(10px);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.infocard:hover {
  transform: translateY(-2px);
  border-color: rgba(118, 139, 168, 0.52);
  box-shadow: 0 14px 26px rgba(17, 31, 53, 0.12), var(--glass-inner);
}

.infocard h3 { margin: 0 0 8px; font-size: 18px; letter-spacing: -0.01em; }

.infocard p { margin: 0; color: #445a74; line-height: 1.5; }

.privacy-box {
  border: 1px solid rgba(133, 157, 189, 0.52);
  background: linear-gradient(160deg, rgba(241, 248, 255, 0.92) 0%, rgba(231, 241, 252, 0.74) 100%);
  border-radius: 16px;
  padding: 14px;
  color: #2a4361;
  box-shadow: var(--glass-shadow-soft), var(--glass-inner);
}

#beispiele .container {
  position: relative;
  background: linear-gradient(175deg, rgba(255, 255, 255, 0.84) 0%, rgba(240, 247, 255, 0.66) 100%);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--glass-shadow), var(--glass-inner);
  overflow: hidden;
  backdrop-filter: blur(var(--glass-blur));
}

#beispiele .container::before {
  content: "";
  position: absolute;
  top: -165px;
  right: -150px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(137, 163, 197, 0.18) 0%, rgba(137, 163, 197, 0) 72%);
  pointer-events: none;
}

#beispiele h2 {
  position: relative;
  margin: 0 0 16px;
  font-size: clamp(30px, 2.5vw, 40px);
  line-height: 1.08;
}

#beispiele .cards3 {
  position: relative;
  gap: 16px;
}

#beispiele .infocard {
  position: relative;
  padding: 18px;
  border-radius: 18px;
  border-color: var(--line);
  box-shadow: var(--glass-shadow-soft), var(--glass-inner);
}

#beispiele .infocard:nth-child(-n+2) {
  background: linear-gradient(175deg, rgba(255, 255, 255, 0.88) 0%, rgba(235, 244, 255, 0.74) 100%);
}

#beispiele .infocard:nth-child(-n+2)::before {
  content: "Fallbeispiel";
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 10px;
}

#beispiele .infocard h3 {
  margin: 0 0 9px;
  font-size: 20px;
  letter-spacing: -0.01em;
}

#beispiele .infocard p {
  font-size: 14px;
  line-height: 1.55;
}

#beispiele .infocard p + p {
  margin-top: 4px;
}

#beispiele .infocard p strong {
  display: inline-block;
  margin-top: 8px;
  color: #172842;
}

#beispiele .infocard:nth-child(-n+2) p:nth-of-type(2) {
  color: #395675;
}

#beispiele .infocard:nth-child(-n+2) p strong {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  border-radius: 999px;
  background: linear-gradient(136deg, rgba(237, 247, 255, 0.95) 0%, rgba(227, 239, 253, 0.86) 100%);
  border: 1px solid rgba(120, 150, 188, 0.44);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 6px 12px rgba(25, 49, 79, 0.1);
  color: #102843;
  font-weight: 900;
}

#beispiele .privacy-box {
  border-color: rgba(128, 152, 186, 0.6);
  background: linear-gradient(160deg, rgba(238, 246, 255, 0.92) 0%, rgba(227, 238, 251, 0.76) 100%);
  box-shadow: var(--glass-shadow-soft), var(--glass-inner);
}

#beispiele .privacy-box h3 {
  color: #2b4465;
}

#beispiele .privacy-box p {
  color: #395170;
}

#beispiele + .section {
  padding-top: 16px;
}

#beispiele + .section .infocard {
  border-color: var(--line);
  box-shadow: var(--glass-shadow-soft), var(--glass-inner);
}

.footer {
  margin-top: 32px;
  padding: 26px 0 38px;
  border-top: 1px solid var(--line);
  color: #546882;
  font-size: 14px;
}

.footer a {
  color: inherit;
  font-weight: 700;
  text-underline-offset: 3px;
}

.footer a:hover {
  color: #2a3f5a;
}

.footer a:focus-visible {
  outline: 2px solid rgba(88, 132, 186, 0.6);
  outline-offset: 3px;
  border-radius: 4px;
}

.legal-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.9) 0%, rgba(241, 248, 255, 0.74) 100%);
  box-shadow: var(--glass-shadow-soft), var(--glass-inner);
  padding: clamp(24px, 3.5vw, 52px);
  backdrop-filter: blur(10px);
  max-width: min(920px, 100%);
  margin: 0 auto;
}

.legal-card h2 {
  margin: 0 0 12px;
  font-size: clamp(14.5px, 1.45vw, 18px);
  font-weight: 700;
  color: #1a3050;
  letter-spacing: -0.005em;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-card h2::before {
  content: "";
  display: block;
  width: 3px;
  min-width: 3px;
  height: 1.15em;
  border-radius: 2px;
  background: linear-gradient(180deg, #4478d4 0%, #2f5db8 100%);
  flex-shrink: 0;
}

.legal-card p {
  margin: 0 0 10px;
  color: #2e4a68;
  line-height: 1.72;
  font-size: clamp(14px, 1.1vw, 15.5px);
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card a {
  color: var(--action-blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(47, 109, 247, 0.32);
  transition: border-color 0.15s;
}

.legal-card a:hover {
  border-bottom-color: var(--action-blue);
}

.legal-intro {
  margin: 0 0 4px;
  color: #2e4a68;
  line-height: 1.72;
  font-size: clamp(14px, 1.1vw, 15.5px);
}

.legal-section {
  padding: 20px 0 18px;
  border-bottom: 1px solid var(--line);
}

.legal-section:first-child {
  padding-top: 0;
}

.legal-section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.legal-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #2e4a68;
  line-height: 1.65;
  font-size: clamp(14px, 1.1vw, 15.5px);
}

.legal-list li {
  position: relative;
  padding: 6px 0 6px 20px;
  border-bottom: 1px solid rgba(122, 149, 182, 0.14);
}

.legal-list li:last-child {
  border-bottom: 0;
}

.legal-list li::before {
  content: "›";
  position: absolute;
  left: 3px;
  top: 6px;
  color: #4478d4;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.65;
}

/* Legal hero header */
.legal-hero {
  padding: clamp(28px, 3.8vw, 52px) 0 clamp(20px, 2.8vw, 36px);
  background: linear-gradient(168deg, rgba(246, 250, 255, 0.96) 0%, rgba(232, 242, 254, 0.82) 100%);
  border-bottom: 1px solid var(--line);
}

.legal-eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--action-blue);
}

.legal-title {
  margin: 0 0 10px;
  font-size: clamp(28px, 3.6vw, 52px);
  font-weight: 900;
  letter-spacing: -0.022em;
  line-height: 1.06;
  color: #091422;
}

.legal-stand {
  margin: 0;
  font-size: 14px;
  color: #6a8aaa;
  font-weight: 500;
}

.page-legal .container,
.page-legal .topbar .container {
  width: min(1360px, 95vw);
}

.page-legal .section {
  padding: 36px 0 48px;
}

@media (max-width: 980px) {
  .legal-hero {
    padding: 20px 0 16px;
  }

  .page-legal .section {
    padding: 22px 0 28px;
  }
}

@media (max-width: 760px) {
  .page-legal .container,
  .page-legal .topbar .container {
    width: calc(100vw - 14px);
  }

  .legal-card {
    border-radius: 14px;
  }
}

@media (max-width: 420px) {
  .page-legal .container,
  .page-legal .topbar .container {
    width: calc(100vw - 12px);
  }
}

.copy-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
}

.copy-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.86) 0%, rgba(241, 248, 255, 0.68) 100%);
  box-shadow: var(--glass-shadow-soft), var(--glass-inner);
  padding: 24px;
  backdrop-filter: blur(10px);
}

.copy-card h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.012em;
}

.copy-card p {
  margin: 0 0 10px;
  color: #425973;
  line-height: 1.6;
}

.hero-services {
  align-self: stretch;
}

.hero-services h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 2.2vw, 38px);
  line-height: 1.12;
}

.hero-services p {
  margin: 0 0 12px;
  color: #3f5873;
  line-height: 1.56;
}

.hero-services .checklist {
  margin-top: 8px;
}

.hero-services .checklist li {
  position: relative;
  font-size: 15px;
  line-height: 1.5;
  padding: 14px 16px 14px 50px;
  border-radius: 14px;
  border: 1px solid rgba(132, 154, 184, 0.38);
  background: linear-gradient(168deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 251, 255, 0.9) 100%);
  box-shadow: 0 8px 16px rgba(17, 35, 58, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  text-align: left;
}

.hero-services .checklist li::before {
  content: "\2713";
  position: absolute;
  left: 16px;
  top: 16px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(220, 234, 253, 0.88);
  border: 1px solid rgba(114, 144, 187, 0.56);
  color: #315784;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.hero-services .checklist li strong {
  display: block;
  width: 100%;
  margin: 0 0 4px;
  text-align: left;
  font-weight: 900;
  color: #1b3f69;
  font-size: clamp(18px, 1.28vw, 23px);
  line-height: 1.22;
  letter-spacing: -0.005em;
}

.hero-services .checklist li span {
  display: block;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.45;
  color: #37506f;
}

.hero-services .funnel-actions {
  margin-top: 14px;
}

.hero-services .funnel-actions .btn {
  flex: 1 1 calc(50% - 6px);
}

.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.checklist li {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.84);
  padding: 9px 12px;
  color: #324a64;
  font-size: 14px;
  box-shadow: var(--glass-inner);
}

.checklist li::before {
  content: "\2713";
  color: #627fa5;
  font-weight: 800;
}

.checklist li strong {
  display: block;
  margin: 0 0 4px;
  color: #183b64;
  line-height: 1.25;
}

.checklist li span {
  display: block;
  line-height: 1.45;
}

/* Mobile GPU tuning: same look, lower compositing/animation cost */
@media (max-width: 980px), (hover: none) and (pointer: coarse) {
  :root {
    --glass-blur: 0px;
    --glass-shadow: 0 10px 22px rgba(14, 25, 44, 0.11), 0 1px 4px rgba(14, 25, 44, 0.05);
    --glass-shadow-soft: 0 6px 14px rgba(14, 25, 44, 0.09), 0 1px 3px rgba(14, 25, 44, 0.04);
    --primary-shadow: 0 10px 20px rgba(36, 80, 182, 0.29), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }

  body {
    background-attachment: scroll;
  }

  body::before {
    animation: none;
    opacity: 0.2;
  }

  .topbar,
  .badge,
  .btn-primary,
  .copy-card,
  .card,
  .card.funnel,
  .infocard,
  .privacy-box,
  .insurer-marquee,
  .contact-inline,
  #beispiele .container,
  .floating-bubble,
  .intro-shell,
  .intro-decision {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  .btn-primary::after,
  .topbar .btn.btn-primary,
  .intro-decision-primary,
  .hero-copy .funnel-actions .btn.btn-primary,
  .floating-guide-figure {
    animation: none !important;
  }

  .btn-primary::after {
    opacity: 0.16;
  }

  .insurer-marquee-track {
    animation-duration: 42s;
  }

  .floating-guide-figure {
    filter: drop-shadow(0 6px 10px rgba(15, 23, 42, 0.14));
  }
}
.hp-wrap {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (min-width: 981px) {
  .floating-guide[data-guide-context="page"] .floating-bubble {
    max-width: min(284px, 34vw);
    padding: 12px 14px 11px;
    border-radius: 18px;
  }

  .floating-guide[data-guide-context="page"] .floating-bubble {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }

  .floating-guide[data-guide-context="page"]:hover .floating-bubble,
  .floating-guide[data-guide-context="page"]:focus-within .floating-bubble {
    opacity: 0.94;
    transform: translateY(0) scale(1);
  }

  .floating-guide[data-guide-context="page"].is-pinned .floating-bubble {
    opacity: 0.94;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 980px) {
  .topbar-inner {
    min-height: 70px;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 6px 0 7px;
    gap: 6px;
  }

  .brand-logo {
    justify-content: center;
    width: 100%;
    flex: 0 0 100%;
  }

  .badge--info {
    display: none;
  }

  .topbar-actions {
    margin-left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 9px;
    align-items: stretch;
  }

  .topbar-actions .badge--contact {
    min-height: 42px;
    font-size: 14.5px;
    padding: 10px 12px;
    width: 100%;
    min-width: 0;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
  }

  .topbar .btn.btn-primary {
    padding: 10px 13px;
    min-height: 42px;
    font-size: 14.5px;
    width: 100%;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    box-sizing: border-box;
  }

  .brand-logo-mark {
    width: 56px;
    height: 47px;
  }

  .brand-logo-art {
    width: clamp(352px, 94vw, 560px);
    max-height: 124px;
  }

  .brand-logo-art[src*="zimmermann-logo-"] {
    width: clamp(396px, 104vw, 620px);
    max-height: 142px;
  }

  .brand-domain {
    font-size: clamp(14px, 3.8vw, 18px);
  }

  .hero-copy {
    padding: 22px 18px 20px;
  }

  .hero {
    padding: 18px 0 16px;
  }

  .hero h1 {
    font-size: clamp(31px, 8.4vw, 39px);
    margin-bottom: 11px;
  }

  .claim {
    font-size: clamp(19px, 5.7vw, 25px);
    margin: 9px 0 11px;
  }

  .sub {
    font-size: 16.5px;
  }

  .page-home .container {
    width: min(1160px, 94vw);
  }

  .page-home .hero {
    padding: 20px 0 16px;
  }

  .page-home .hero-copy {
    padding: 24px 18px 22px;
  }

  .page-home .hero-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .page-home .hero h1 {
    max-width: 100%;
    font-size: clamp(31px, 8.1vw, 42px);
    line-height: 1.12;
    letter-spacing: -0.01em;
  }

  .page-home .hero h1 .accent {
    white-space: normal;
  }

  .page-home .claim {
    margin: 10px 0 12px;
  }

  .page-home .claim .claim-guarantee {
    padding: 6px 11px 7px;
    border-radius: 12px;
    gap: 3px 9px;
    font-size: clamp(19px, 5.1vw, 27px);
    line-height: 1.2;
  }

  .page-home .claim .claim-tail {
    font-weight: 800;
  }

  .page-home .claim .claim-guarantee strong {
    font-size: 1.12em;
  }

  .page-home .sub {
    font-size: 17px;
    max-width: 100%;
  }

  .page-home .inline-link {
    font-size: 17px;
  }

  .page-home .funnel-actions .btn {
    min-height: 45px;
    font-size: 16px;
  }

  .page-home .hero-services {
    padding: 22px 18px 20px;
  }

  .page-home .hero-services h2 {
    font-size: clamp(30px, 7.8vw, 40px);
  }

  .page-home .hero-services p {
    font-size: 16px;
  }

  .contact-inline {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px 14px;
  }

  .contact-inline-card h2 {
    font-size: clamp(30px, 7.7vw, 40px);
  }

  .contact-inline-card p {
    font-size: 16px;
  }

  .contact-inline-cta {
    width: 100%;
    justify-content: center;
  }

  .page-home .hero-services .checklist li {
    font-size: 13.5px;
    padding: 11px 11px 11px 38px;
  }

  .page-home .hero-services .checklist li::before {
    left: 10px;
    top: 11px;
    width: 16px;
    height: 16px;
    font-size: 11px;
  }

  .page-home .hero-services .checklist li strong {
    font-size: 14.5px;
    margin-bottom: 3px;
    text-align: left;
  }

  .page-home .hero-services .checklist li span {
    font-size: 13px;
    line-height: 1.35;
  }

  .page-calculator .container {
    width: min(1160px, 94vw);
  }

  .page-calculator .hero {
    padding: 18px 0 14px;
  }

  .page-calculator .card.funnel {
    padding: 18px 14px 16px;
    border-radius: 16px;
    max-width: 100%;
  }

  .page-calculator .calculator-strip {
    margin: 0 0 12px;
  }

  .page-calculator .calculator-strip .insurer-chip {
    min-width: 92px;
    min-height: 32px;
    padding: 5px 9px;
  }

  .page-calculator .calculator-strip .insurer-chip img {
    height: 16px;
    max-width: 82px;
  }

  .page-calculator .hero,
  .page-calculator .container,
  .page-calculator .hero-grid,
  .page-calculator .card.funnel,
  .page-calculator .insurer-strip,
  .page-calculator .insurer-marquee {
    max-width: 100%;
    min-width: 0;
  }

  .page-calculator .card.funnel,
  .page-calculator .insurer-marquee,
  .page-calculator .step-head,
  .page-calculator .funnel-actions {
    overflow-x: clip;
  }

  .page-calculator #rechner {
    scroll-margin-top: 92px;
  }

  .page-calculator .step-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 14px;
  }

  .page-calculator .step {
    min-height: 50px;
    border-radius: 14px;
    padding: 8px 10px;
    align-items: flex-start;
    text-align: left;
    min-width: 0;
  }

  .page-calculator .step-label {
    font-size: 16px;
  }

  .page-calculator label {
    font-size: 14px;
    margin: 9px 0 6px;
  }

  .page-calculator input,
  .page-calculator select,
  .page-calculator textarea {
    min-height: 46px;
    font-size: 16px;
  }

  .page-calculator .funnel-actions {
    margin-top: 12px;
    gap: 9px;
  }

  .page-calculator .funnel-actions .btn {
    min-height: 46px;
    padding: 11px 12px;
    font-size: 16px;
    border-radius: 12px;
  }

  .page-calculator .small-note {
    line-height: 1.42;
  }

  .funnel-actions {
    gap: 8px;
  }

  .funnel-actions .btn {
    flex: 1 1 100%;
    text-align: center;
  }

  .card.funnel {
    padding: 18px 14px 16px;
    border-radius: 14px;
  }

  .insurer-strip-label {
    font-size: 11px;
  }

  .insurer-strip-inline {
    margin: 0 0 14px;
  }

  .insurer-chip {
    min-width: 88px;
    min-height: 32px;
    padding: 5px 9px;
  }

  .insurer-chip img {
    height: 16px;
    max-width: 82px;
  }

  .hero-grid { grid-template-columns: 1fr; }

  .cards3 { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .step {
    min-height: 52px;
    padding: 6px 6px 7px;
  }

  .step-kicker {
    font-size: 11px;
  }

  .step-label {
    font-size: 15px;
  }

  .confirm-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }

  .confirm-row strong {
    max-width: 100%;
    text-align: left;
  }

  .thanks-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .thanks-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .thanks-grid {
    grid-template-columns: 1fr;
  }

  .thanks-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }

  .thanks-row strong {
    max-width: 100%;
    text-align: left;
  }

  .copy-grid { grid-template-columns: 1fr; }

  .section {
    padding: 20px 0;
  }

  #beispiele .container {
    border-radius: 16px;
    padding: 16px;
  }

  #beispiele h2 {
    margin-bottom: 12px;
    font-size: clamp(28px, 8vw, 36px);
  }

  #beispiele .cards3 {
    gap: 12px;
  }

  #beispiele .infocard {
    padding: 14px;
    border-radius: 14px;
  }

  #beispiele .infocard h3 {
    font-size: 18px;
  }

  #beispiele .infocard p {
    font-size: 13px;
  }

  main {
    padding-bottom: 48px;
  }

  body:has(.floating-guide.mobile-overlay[data-guide-context="page"]) main {
    padding-bottom: 84px;
  }

  .floating-guide[data-guide-context="page"] {
    display: none;
  }

  .floating-guide.mobile-overlay[data-guide-context="page"] {
    display: flex;
    right: clamp(8px, 3vw, 14px);
    left: auto;
    bottom: max(8px, env(safe-area-inset-bottom));
    gap: 8px;
    z-index: 48;
  }

  body.funnel-step-2 .floating-guide.mobile-overlay[data-guide-context="page"],
  body.funnel-step-3 .floating-guide.mobile-overlay[data-guide-context="page"] {
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
  }

  .floating-guide.mobile-overlay[data-guide-context="page"] .floating-guide-figure {
    width: clamp(92px, 28vw, 124px);
    filter: drop-shadow(0 8px 14px rgba(15, 23, 42, 0.18));
  }

  .floating-guide.mobile-overlay[data-guide-context="page"] .floating-bubble {
    max-width: min(236px, 72vw);
    border-radius: 13px;
    padding: 8px 11px;
    margin-bottom: clamp(42px, 8vw, 66px);
  }

  .floating-guide.mobile-overlay[data-guide-context="page"] .floating-bubble strong {
    font-size: 11px;
  }

  .floating-guide.mobile-overlay[data-guide-context="page"] .floating-bubble [data-role="case-title"] {
    font-size: 12px;
    line-height: 1.2;
    margin-bottom: 3px;
  }

  .floating-guide.mobile-overlay[data-guide-context="page"] .floating-bubble [data-role="case-line1"] {
    font-size: 11.2px;
    line-height: 1.25;
  }

  .floating-guide.mobile-overlay[data-guide-context="page"] .floating-bubble [data-role="case-line2"] {
    font-size: 11px;
    line-height: 1.27;
    white-space: pre-line;
  }

  .floating-guide.mobile-overlay[data-guide-context="page"] .floating-bubble [data-role="case-line3"] {
    font-size: 12.8px;
    line-height: 1.15;
  }

  .floating-guide.mobile-overlay[data-guide-context="page"] .floating-bubble p {
    font-size: 11px;
    line-height: 1.3;
  }

  .floating-guide.mobile-overlay[data-guide-context="page"] .floating-bubble p + p {
    margin-top: 3px;
  }

  .floating-guide.mobile-overlay[data-guide-context="page"] .floating-bubble::after {
    width: 10px;
    height: 10px;
    bottom: 12px;
  }

  .page-calculator .floating-guide.mobile-overlay[data-guide-context="page"] {
    display: none !important;
  }

  .intro-landing {
    padding: 12px;
    align-items: start;
  }

  .intro-shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    padding: 18px 14px calc(14px + env(safe-area-inset-bottom) + 286px);
    border-radius: 18px;
    width: min(560px, 100%);
    min-height: calc(100dvh - 24px);
    align-items: start;
    text-align: center;
  }

  .intro-brandline {
    order: 1;
    width: 100%;
    max-width: min(380px, 100%);
    justify-content: center;
    margin: 0 auto 2px;
    padding: 8px 11px;
    border-radius: 12px;
  }

  .intro-brandline-logo {
    max-width: min(430px, 100%);
    padding: 0;
  }

  .intro-brandline-logo-art {
    width: min(740px, 92vw);
    max-height: 200px;
  }

  .intro-brandline-logo-art[src*="zimmermann-logo-"] {
    width: min(840px, 95vw);
    max-height: 230px;
  }

  .intro-brandline-mark {
    width: 44px;
    height: 36px;
  }

  .intro-brandline-text {
    gap: 1px;
    text-align: center;
    justify-items: center;
  }

  .intro-brandline-domain {
    font-size: 20px;
  }

  .intro-brandline-subline {
    font-size: 9.5px;
    letter-spacing: 0.06em;
  }

  .intro-headline {
    order: 2;
    margin: 2px auto 4px;
    max-width: min(520px, 100%);
    font-size: clamp(28px, 7.8vw, 44px);
    line-height: 1.08;
  }

  .intro-copy {
    order: 3;
    padding-right: 0;
    margin: 0 auto;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-bottom: 10px;
  }

  .intro-copy > p:not(.intro-promise) {
    margin-top: 10px;
    font-size: 17px;
    line-height: 1.4;
    max-width: 34ch;
    text-align: center;
  }

  .intro-copy .intro-promise {
    margin-top: 10px;
    max-width: min(360px, 100%);
    padding: 9px 11px;
    font-size: 14.5px;
    line-height: 1.34;
  }

  .intro-actions {
    width: 100%;
    margin-top: 14px;
    flex-direction: column;
  }

  .intro-actions .btn {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    text-align: center;
    min-height: 46px;
    padding: 10px 12px;
    font-size: 15px;
  }

  .intro-consent-actions {
    gap: 8px;
    margin-top: 16px;
    padding: 10px;
  }

  .intro-consent-actions::before {
    font-size: 10px;
    text-align: center;
  }

  .intro-decision {
    gap: 4px;
    border-radius: 12px;
    padding: 9px 11px;
    align-items: center;
    text-align: center;
  }

  .intro-decision-title {
    font-size: 16px;
    line-height: 1.1;
  }

  .intro-decision-secondary .intro-decision-title {
    font-size: 15px;
  }

  .intro-decision-note {
    font-size: 11px;
    line-height: 1.28;
  }

  .intro-cookie-hint {
    margin-top: 12px;
    margin-bottom: 6px;
    padding-top: 10px;
    width: 100%;
    max-width: min(360px, 100%);
    border-top: 1px solid rgba(137, 161, 190, 0.34);
    font-size: 11px;
    line-height: 1.36;
    text-align: center;
    display: grid;
    gap: 8px;
    justify-items: center;
  }

  .intro-cookie-hint-text {
    max-width: 34ch;
  }

  .intro-cookie-meta {
    width: 100%;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 8px;
  }

  .intro-legal-links {
    justify-content: center;
    gap: 7px;
  }

  .intro-legal-links a {
    min-height: 30px;
    padding: 5px 10px;
    font-size: 11.5px;
  }

  .intro-insurer-strip {
    width: min(324px, 100%);
  }

  .intro-insurer-marquee .insurer-marquee-group {
    padding: 4px 6px;
    gap: 5px;
  }

  .intro-insurer-marquee .insurer-chip {
    min-width: 68px;
    min-height: 24px;
    padding: 3px 8px;
  }

  .intro-insurer-marquee .insurer-chip img {
    height: 11px;
    max-width: 54px;
  }

  .intro-guide {
    order: 3;
    position: absolute;
    left: 50%;
    right: auto;
    bottom: calc(4px + env(safe-area-inset-bottom));
    transform: translate(-50%, 18px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    align-self: auto;
    width: min(344px, calc(100% - 24px));
    max-width: min(344px, calc(100% - 24px));
    gap: 6px;
    margin: 0;
    min-height: 0;
    z-index: 1;
    transition: transform .2s ease, bottom .2s ease;
  }

  .intro-guide .floating-guide-trigger {
    position: relative;
    z-index: 1;
    align-self: center;
    margin: 0;
  }

  .intro-guide .floating-guide-figure {
    width: clamp(120px, 32vw, 162px);
    display: block;
    margin-bottom: -1px;
    filter: drop-shadow(0 8px 14px rgba(15, 23, 42, 0.2));
  }

  .intro-guide .floating-bubble {
    position: relative;
    top: auto;
    left: auto;
    max-width: min(318px, calc(100% - 6px));
    width: min(318px, calc(100% - 6px));
    border-radius: 24px;
    padding: 10px 14px 12px;
    margin: 0;
    border: 1px solid rgba(58, 84, 118, 0.52);
    background: linear-gradient(168deg, rgba(255, 255, 255, 0.985) 0%, rgba(244, 250, 255, 0.96) 100%);
    box-shadow: 0 10px 24px rgba(16, 33, 56, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.86);
    display: grid;
    gap: 2px;
    justify-items: center;
    text-align: center;
    isolation: isolate;
  }

  .intro-guide .floating-bubble > * {
    position: relative;
    z-index: 2;
  }

  .intro-guide .floating-bubble [data-role="case-title"] {
    font-size: 12.5px;
    line-height: 1.18;
    margin-bottom: 2px;
  }

  .intro-guide .floating-bubble [data-role="case-line1"] {
    font-size: 11.8px;
    line-height: 1.26;
    color: #1f446f;
    font-weight: 800;
  }

  .intro-guide .floating-bubble [data-role="case-line2"] {
    font-size: 11.6px;
    line-height: 1.28;
    color: #37557a;
    font-weight: 500;
  }

  .intro-guide .floating-bubble [data-role="case-line3"] {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 15.8px;
    line-height: 1.12;
    font-weight: 900;
    padding: 2px 9px 3px;
    border-radius: 999px;
  }

  .intro-guide .floating-bubble p {
    font-size: 11.5px;
    line-height: 1.24;
    margin: 0;
  }

  .intro-guide .floating-bubble p + p {
    margin-top: 2px;
  }

  .intro-guide .floating-bubble::before {
    width: 11px;
    height: 11px;
    left: calc(56% + 4px);
    right: auto;
    top: auto;
    bottom: -14px;
    border: 1px solid rgba(58, 84, 118, 0.5);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 2px 5px rgba(20, 38, 63, 0.14);
    z-index: 1;
    pointer-events: none;
  }

  .intro-guide .floating-bubble::after {
    width: 7px;
    height: 7px;
    top: auto;
    left: calc(56% + 21px);
    right: auto;
    bottom: -24px;
    border: 1px solid rgba(58, 84, 118, 0.44);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 2px 4px rgba(20, 38, 63, 0.12);
    transform: none;
    z-index: 1;
    pointer-events: none;
  }

  .intro-landing.is-active .intro-guide {
    transform: translate(-50%, 0);
  }

  .intro-landing.is-mobile-bottom .intro-guide {
    bottom: calc(4px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 760px) {
  .page-home .container,
  .page-calculator .container {
    width: calc(100vw - 14px);
  }

  .page-home .topbar .container,
  .page-calculator .topbar .container {
    width: calc(100vw - 14px);
  }

  .page-home .hero {
    padding: 14px 0 14px;
  }

  .page-home .hero-copy,
  .page-home .hero-services {
    padding: 19px 15px 17px;
    border-radius: 14px;
  }

  .page-home .hero h1 {
    font-size: clamp(25px, 7.6vw, 32px);
    line-height: 1.13;
    margin-bottom: 10px;
  }

  .page-home .claim .claim-guarantee {
    width: 100%;
    font-size: clamp(16.6px, 4.9vw, 21.8px);
    line-height: 1.23;
    padding: 8px 11px 9px;
  }

  .page-home .claim .claim-tail {
    display: block;
    width: 100%;
    margin-top: 1px;
  }

  .page-home .sub,
  .page-home .hero-services p,
  .page-home .infocard p,
  .page-home .small-note,
  .page-home .confirm-text,
  .page-home .thanks-sub {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
  }

  .page-home .hero-services .checklist li {
    padding: 10px 10px 10px 36px;
    font-size: 13.5px;
  }

  .page-home .hero-services .checklist li strong {
    font-size: 14px;
    margin-bottom: 3px;
    text-align: left;
  }

  .page-home .hero-services .checklist li span {
    font-size: 12.8px;
    line-height: 1.34;
  }

  .page-home .funnel-actions .btn,
  .page-home .hero-services .funnel-actions .btn {
    min-height: 45px;
    font-size: 15.5px;
    padding: 10px 12px;
    border-radius: 12px;
    width: min(92%, 340px);
    flex: 0 1 340px;
    margin-inline: auto;
  }

  .page-home .funnel-actions,
  .page-home .hero-services .funnel-actions {
    justify-content: center;
    align-items: center;
  }

  .page-home #beispiele .container,
  .page-home .infocard {
    border-radius: 14px;
  }

  .page-home .section {
    padding: 14px 0;
  }

  .page-home .cards3 {
    gap: 10px;
  }

  .page-home .infocard {
    padding: 12px;
  }

  .page-home #beispiele .infocard:nth-child(-n+2) p strong {
    padding: 5px 10px;
    font-size: 13px;
  }

  .page-home .floating-guide.mobile-overlay[data-guide-context="page"] {
    display: none !important;
  }

  body.page-home:has(.floating-guide.mobile-overlay[data-guide-context="page"]) main {
    padding-bottom: 48px;
  }
}

@media (max-width: 420px) {
  .brand-domain {
    font-size: 13px;
  }

  .page-home .topbar .container,
  .page-calculator .topbar .container {
    width: calc(100vw - 12px);
  }

  .brand-logo-art {
    width: clamp(294px, 84vw, 390px);
    max-height: 100px;
  }

  .brand-logo-art[src*="zimmermann-logo-"] {
    width: clamp(320px, 92vw, 430px);
    max-height: 112px;
  }

  .topbar .btn.btn-primary {
    font-size: 12.5px;
    padding: 9px 10px;
  }

  .topbar-actions .badge--contact {
    font-size: 12.5px;
    padding: 8px 10px;
  }

  .page-calculator .container {
    width: calc(100vw - 12px);
  }

  .page-calculator .card.funnel {
    padding: 14px 10px 12px;
    border-radius: 14px;
  }

  .page-calculator .step-head {
    gap: 6px;
    margin-bottom: 12px;
  }

  .page-calculator .step {
    min-height: 46px;
    padding: 7px 9px;
  }

  .page-calculator .step-label {
    font-size: 15px;
  }

  .page-calculator .calculator-strip .insurer-chip {
    min-width: 84px;
    min-height: 30px;
  }

  .page-calculator .calculator-strip .insurer-chip img {
    max-width: 74px;
  }

  .intro-brandline {
    gap: 8px;
    padding: 7px 9px;
  }

  .intro-brandline-logo {
    padding: 0;
  }

  .intro-brandline-logo-art {
    width: min(620px, 93vw);
    max-height: 170px;
  }

  .intro-brandline-logo-art[src*="zimmermann-logo-"] {
    width: min(690px, 98vw);
    max-height: 186px;
  }

  .intro-brandline-mark {
    width: 38px;
    height: 31px;
  }

  .intro-brandline-domain {
    font-size: 17px;
  }

  .intro-brandline-subline {
    font-size: 8.5px;
    letter-spacing: 0.05em;
  }

  .intro-shell {
    padding: 16px 12px calc(12px + env(safe-area-inset-bottom) + 252px);
  }

  .intro-headline {
    font-size: clamp(24px, 8vw, 34px);
  }

  .intro-copy > p:not(.intro-promise) {
    font-size: 15px;
  }

  .intro-copy .intro-promise {
    font-size: 13px;
    line-height: 1.32;
    padding: 8px 10px;
  }

  .intro-guide {
    width: min(324px, calc(100% - 20px));
    max-width: min(324px, calc(100% - 20px));
    gap: 5px;
    bottom: calc(4px + env(safe-area-inset-bottom));
  }

  .intro-landing.is-mobile-bottom .intro-guide {
    bottom: calc(4px + env(safe-area-inset-bottom));
  }

  .intro-guide .floating-guide-trigger {
    margin: 0;
  }

  .intro-guide .floating-guide-figure {
    width: clamp(104px, 30vw, 138px);
  }

  .intro-guide .floating-bubble {
    width: min(298px, calc(100% - 4px));
    max-width: min(298px, calc(100% - 4px));
    border-radius: 21px;
    padding: 9px 12px 11px;
    gap: 2px;
  }

  .intro-guide .floating-bubble::before {
    left: calc(57% + 2px);
    bottom: -13px;
  }

  .intro-guide .floating-bubble::after {
    left: calc(57% + 17px);
    bottom: -22px;
  }

  .intro-decision-title {
    font-size: 15px;
  }

  .intro-decision-secondary .intro-decision-title {
    font-size: 14px;
  }

  .intro-decision-note {
    font-size: 10px;
  }

  .intro-cookie-hint {
    margin-top: 10px;
    margin-bottom: 6px;
    font-size: 10px;
    gap: 6px;
  }

  .intro-legal-links {
    gap: 6px;
  }

  .intro-legal-links a {
    min-height: 28px;
    padding: 4px 9px;
    font-size: 10.5px;
  }

  .intro-insurer-strip {
    width: min(296px, 100%);
  }

  .intro-insurer-marquee .insurer-marquee-group {
    padding: 4px 5px;
    gap: 4px;
  }

  .intro-insurer-marquee .insurer-chip {
    min-width: 62px;
    min-height: 22px;
    padding: 3px 7px;
  }

  .intro-insurer-marquee .insurer-chip img {
    height: 10px;
    max-width: 50px;
  }
}

@media (max-height: 740px) {
  .intro-landing {
    place-items: start center;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .intro-shell {
    transform-origin: center top;
  }
}

/* Desktop visual tuning: calmer look with reduced ornamentation */
@media (min-width: 981px) {
  :root {
    --glass-blur: 8px;
    --glass-shadow: 0 12px 26px rgba(14, 25, 44, 0.12), 0 1px 4px rgba(14, 25, 44, 0.05);
    --glass-shadow-soft: 0 7px 16px rgba(14, 25, 44, 0.09), 0 1px 3px rgba(14, 25, 44, 0.04);
    --primary-shadow: 0 12px 24px rgba(36, 80, 182, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }

  body::before {
    opacity: 0.18;
    animation: none;
  }

  .intro-shell::before,
  .intro-shell::after,
  .hero-copy::before,
  .hero-copy::after {
    opacity: 0.5;
  }

  .btn-primary::after,
  .topbar .btn.btn-primary,
  .intro-decision-primary,
  .hero-copy .funnel-actions .btn.btn-primary,
  .floating-guide-figure {
    animation: none;
  }

  .insurer-marquee-track {
    animation-duration: 36s;
  }

  .floating-guide-figure {
    filter: drop-shadow(0 7px 12px rgba(15, 23, 42, 0.14));
  }

  .topbar,
  .badge,
  .btn-primary,
  .copy-card,
  .card,
  .card.funnel,
  .infocard,
  .privacy-box,
  .insurer-marquee,
  .contact-inline,
  #beispiele .container,
  .floating-bubble,
  .intro-shell,
  .intro-decision {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  .btn-primary::after {
    animation: none !important;
  }

  .insurer-marquee-track {
    animation: none;
  }

  .intro-landing,
  .intro-shell,
  .intro-guide,
  .floating-guide-figure,
  .floating-bubble {
    transition: none !important;
  }

  .floating-guide-figure,
  .floating-guide-figure.guide-refresh,
  .floating-bubble.bubble-refresh,
  .topbar .btn.btn-primary,
  .intro-decision-primary,
  .hero-copy .funnel-actions .btn.btn-primary {
    animation: none !important;
  }
}
