:root {
  --ink: #111827;
  --muted: #5b6472;
  --paper: #fffdf9;
  --soft: #f4faf8;
  --teal: #008c8c;
  --teal-dark: #006f73;
  --blue: #0076ff;
  --blue-dark: #083a9f;
  --blush: #f7d8cf;
  --amber: #ffb020;
  --mint: #dff4ee;
  --line: #d9e5e4;
  --shadow: 0 18px 45px rgba(17, 24, 39, 0.10);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

[hidden] {
  display: none !important;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(160px, 210px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 10px max(20px, calc((100vw - 1120px) / 2));
  background: rgba(255, 253, 249, 0.92);
  border-bottom: 1px solid rgba(217, 229, 228, 0.8);
  backdrop-filter: blur(18px);
}

.brand img {
  width: min(210px, 100%);
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
  flex-wrap: nowrap;
  min-width: 0;
}

.site-nav a,
.nav-link {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.nav-item:hover .nav-link,
.nav-link:focus-visible {
  background: var(--mint);
  color: var(--ink);
}

.nav-item {
  position: relative;
  flex: 0 0 auto;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-caret {
  font-size: 12px;
  line-height: 1;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 40;
  display: grid;
  width: 310px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 253, 249, 0.98);
  box-shadow: 0 22px 60px rgba(17, 24, 39, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-dropdown-wide {
  width: 330px;
}

.knowledge-nav {
  position: static;
  display: inline-flex;
}

.knowledge-mega {
  left: 50%;
  width: min(900px, calc(100vw - 40px));
  transform: translate(-50%, 8px);
}

.knowledge-nav:hover .knowledge-mega,
.knowledge-nav:focus-within .knowledge-mega {
  transform: translate(-50%, 0);
}

.knowledge-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.knowledge-nav:hover .knowledge-mega,
.knowledge-nav:focus-within .knowledge-mega {
  transform: translate(-50%, 0);
}

.nav-dropdown a {
  display: grid;
  gap: 2px;
  padding: 12px;
  border-radius: 10px;
  white-space: normal;
}

.nav-dropdown a strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.2;
}

.nav-dropdown a small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn-primary {
  background: var(--teal);
  color: white;
  box-shadow: 0 12px 30px rgba(0, 140, 140, 0.22);
}

.header-cta {
  flex: 0 0 auto;
  gap: 10px;
  padding: 0 20px;
  background: linear-gradient(135deg, #0084ff, #083a9f);
  color: white;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
  box-shadow: 0 16px 34px rgba(0, 92, 190, 0.22);
}

.header-cta .btn-icon {
  flex: 0 0 23px;
  order: 2;
  width: 23px;
  height: 23px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 18px;
}

.header-cta:hover {
  background: linear-gradient(135deg, #0a94ff, #0a43ba);
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(0, 92, 190, 0.28);
}

.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  flex: 0 0 auto;
  gap: 10px;
  min-width: max-content;
}

.social-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: white;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  color: white;
  filter: saturate(1.08);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.20);
}

.social-link svg {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 22px;
  height: 22px;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.18));
}

.social-link-instagram {
  background:
    radial-gradient(circle at 30% 105%, #fdf497 0 12%, #fd5949 38%, transparent 52%),
    linear-gradient(135deg, #405de6 0%, #833ab4 35%, #c13584 62%, #e1306c 78%, #fd1d1d 100%);
}

.social-link-facebook {
  background: #1877f2;
}

.social-link-tiktok {
  background: #050505;
}

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

.site-nav .social-link,
.site-nav .social-link:hover,
.site-nav .social-link:focus-visible {
  color: #fff;
}

.site-nav .social-link-instagram svg,
.site-nav .social-link-facebook svg {
  color: #fff;
}

.btn-secondary {
  background: white;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-dark {
  width: 100%;
  background: var(--ink);
  color: white;
}

.btn-product {
  min-height: 42px;
  background: var(--blush);
  color: var(--ink);
}

.btn-icon {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1;
}

.nav-toggle {
  display: none;
}

.section-band {
  background:
    linear-gradient(135deg, rgba(247, 216, 207, 0.88), rgba(223, 244, 238, 0.9) 55%, rgba(255, 253, 249, 1));
}

.home-hero-v1 {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: min(680px, calc(100vh - 72px));
  display: grid;
  align-items: center;
  padding: 88px 0 124px;
  background: #102a43 var(--hero-image) center 12% / cover no-repeat;
  color: white;
}

.home-hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  background: #102a43 var(--hero-image) center / cover no-repeat;
  pointer-events: none;
}

.home-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(1.04);
  transition: opacity 600ms ease;
}

.home-hero-v1::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(7, 18, 36, 0.88) 0%, rgba(7, 18, 36, 0.62) 45%, rgba(7, 18, 36, 0.28) 100%),
    linear-gradient(180deg, rgba(5, 18, 34, 0.16), rgba(5, 18, 34, 0.5));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform-origin: center;
  pointer-events: none;
}

@keyframes home-hero-breathe {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.035);
  }
}

.home-hero-v1::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 42%;
  background: linear-gradient(0deg, rgba(7, 18, 36, 0.48), transparent);
}

.home-hero-v1-inner {
  display: grid;
  align-content: center;
  min-height: 430px;
}

.home-hero-v1 .eyebrow {
  color: #ffdf76;
}

.home-hero-v1 h1 {
  max-width: 760px;
  color: white;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.96;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.32);
  text-wrap: balance;
}

.home-hero-v1-lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.28);
}

.home-hero-v1-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.home-hero-v1 .btn-secondary {
  background: rgba(255, 255, 255, 0.16);
  color: white;
  border-color: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(12px);
}

.home-hero-v1-trust {
  width: fit-content;
  max-width: 100%;
  margin: 18px 0 0;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(8, 58, 159, 0.28);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.home-situation-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(190px, 0.72fr) minmax(0, 2.28fr);
  gap: 0;
  align-items: stretch;
  margin-top: -78px;
  margin-bottom: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(5, 18, 34, 0.88);
  box-shadow: 0 26px 58px rgba(5, 18, 34, 0.24);
  color: white;
  backdrop-filter: blur(18px);
}

.home-icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.home-situation-heading {
  min-height: 100%;
  padding: 18px 18px 18px 16px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-situation-heading .eyebrow {
  color: #7ce7ff;
}

.home-situation-heading h2 {
  color: white;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
}

.home-situation-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.home-situation-card {
  display: grid;
  align-content: space-between;
  gap: 12px;
  min-height: 132px;
  padding: 16px 18px 14px;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  background: transparent;
  color: white;
  text-decoration: none;
  box-shadow: none;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.home-situation-icon {
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  color: #9df2ff;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-pain-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-situation-icon path,
.home-pain-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-situation-card:hover,
.home-situation-card:focus-visible {
  border-color: rgba(124, 231, 255, 0.36);
  background: rgba(0, 118, 255, 0.16);
  transform: translateY(-2px);
  outline: none;
}

.home-situation-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  min-height: 27px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(124, 231, 255, 0.16);
  color: #9df2ff;
  font-size: 12px;
  font-weight: 900;
}

.home-situation-label .line-icon {
  width: 16px;
  height: 16px;
  border-width: 1.5px;
  border-radius: 999px;
  background: rgba(124, 231, 255, 0.08);
  color: currentColor;
}

.home-situation-label .line-icon::before {
  width: 9px;
  height: 10px;
  margin: 0;
  border: 0;
  background: currentColor;
  clip-path: polygon(50% 0, 88% 16%, 82% 58%, 50% 100%, 18% 58%, 12% 16%);
  transform: none;
}

.home-situation-label .line-icon::after {
  display: none;
}

.home-situation-card strong {
  max-width: 100%;
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.05;
  overflow-wrap: normal;
}

.home-situation-card::after {
  content: "Kurz öffnen";
  width: fit-content;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.home-pain-board {
  grid-column: 1 / -1;
  margin-top: 12px;
  padding: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(0, 212, 212, 0.12), rgba(4, 27, 52, 0.72) 42%, rgba(255, 255, 255, 0.05));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.home-pain-board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.home-pain-board-head .eyebrow {
  color: #7ce7ff;
}

.home-pain-board-head h3 {
  margin: 0;
  color: white;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1;
}

.home-pain-board-head > p {
  max-width: 330px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 820;
  line-height: 1.35;
}

.home-pain-focus {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
}

.home-pain-slides {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  isolation: isolate;
}

.home-pain-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 14px;
  min-width: 0;
  padding: 30px 32px;
  border: 1px solid rgba(124, 231, 255, 0.18);
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(0, 153, 153, 0.16), rgba(8, 35, 66, 0.58)),
    rgba(255, 255, 255, 0.045);
  color: white;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateX(42px);
  transition: opacity 620ms ease, transform 620ms ease, border-color 180ms ease;
  will-change: opacity, transform;
}

.home-pain-slide.is-active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.home-pain-slide.is-pain-prev {
  transform: translateX(-42px);
}

.home-pain-slide.is-pain-next {
  transform: translateX(42px);
}

.home-pain-slide:hover,
.home-pain-slide:focus-visible {
  border-color: rgba(124, 231, 255, 0.44);
  outline: none;
}

.home-pain-kicker {
  width: fit-content;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(124, 231, 255, 0.15);
  color: #9df2ff;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.home-pain-slide strong {
  color: white;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 0.98;
  overflow-wrap: break-word;
  hyphens: none;
}

.home-pain-slide span:not(.home-pain-kicker) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  font-weight: 760;
  line-height: 1.38;
}

.home-pain-slide em {
  color: #9df2ff;
  font-size: 14px;
  font-style: normal;
  font-weight: 950;
}

.home-pain-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.home-pain-arrow {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font-size: 18px;
  font-weight: 950;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.home-pain-arrow:hover,
.home-pain-arrow:focus-visible {
  border-color: rgba(124, 231, 255, 0.48);
  background: rgba(0, 153, 153, 0.34);
  transform: translateY(-1px);
  outline: none;
}

.home-pain-count {
  min-width: 54px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
}

.home-pain-dots {
  display: inline-flex;
  flex: 1 1 auto;
  gap: 7px;
  align-items: center;
  min-width: 0;
}

.home-pain-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
}

.home-pain-dot.is-active {
  width: 28px;
  background: #18d7df;
}

@media (prefers-reduced-motion: reduce) {
  .home-question-bg,
  .about-hero-bg,
  .knowledge-hero-bg,
  .home-pain-slide {
    transition: none !important;
  }

  .home-hero-v1::before,
  .home-question-stage::before,
  .about-hero::before {
    animation: none !important;
    transform: none !important;
  }
}

.home-question-stage {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: -1px;
  padding: 118px 0;
  background: #07162c;
  color: white;
}

.home-question-backgrounds {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  pointer-events: none;
}

.home-question-bg {
  position: absolute;
  inset: -2%;
  background-image: var(--home-bg-image);
  background-position: var(--home-bg-position, center);
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.025) translate3d(0, 0, 0);
  transition: opacity 1500ms ease, transform 11500ms ease;
}

.home-question-bg.is-active {
  opacity: 1;
  transform: scale(1.07) translate3d(var(--home-bg-drift-x, 0), var(--home-bg-drift-y, 0), 0);
}

.home-question-stage::before {
  content: "";
  position: absolute;
  inset: -3%;
  z-index: -2;
  background: linear-gradient(90deg, rgba(7, 22, 44, 0.94) 0%, rgba(7, 22, 44, 0.76) 50%, rgba(7, 22, 44, 0.18) 100%);
  background-position: center;
  background-size: cover;
  animation: home-background-pan 28s ease-in-out infinite alternate;
  transform-origin: center;
}

@keyframes home-background-pan {
  from {
    transform: scale(1.03) translateX(-1.2%);
  }

  to {
    transform: scale(1.055) translateX(1.2%);
  }
}

.home-question-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(5, 18, 34, 0.28), rgba(5, 18, 34, 0.72));
}

.home-question-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 34px;
  align-items: center;
}

.home-question-copy .eyebrow {
  color: #7ce7ff;
}

.home-question-copy h2 {
  max-width: 720px;
  color: white;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.94;
}

.home-question-copy p {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.home-question-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.home-question-panel span {
  color: #9df2ff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-question-panel strong {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.04;
}

.home-answer-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.home-answer-row a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(124, 231, 255, 0.24);
  border-radius: 999px;
  background: linear-gradient(135deg, #00a7a7, #008c8c);
  color: white;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(0, 140, 140, 0.22);
  transition: filter 180ms ease, transform 180ms ease;
}

.home-answer-row a:nth-child(2) {
  background: linear-gradient(135deg, #0084ff, #083a9f);
  box-shadow: 0 16px 34px rgba(0, 92, 190, 0.2);
}

.home-answer-row a::after {
  content: "›";
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 18px;
  line-height: 1;
}

.home-answer-row a:hover,
.home-answer-row a:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-1px);
  outline: none;
}

.home-question-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  font-weight: 750;
}

.kowadu-check-stage {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 112px 0 128px;
  background:
    radial-gradient(circle at 82% 10%, rgba(124, 231, 255, 0.22), transparent 30%),
    radial-gradient(circle at 20% 82%, rgba(0, 153, 153, 0.22), transparent 34%),
    linear-gradient(180deg, #041528 0%, #071b33 54%, #061326 100%);
  color: white;
}

.kowadu-check-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(124, 231, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 231, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 86%);
  pointer-events: none;
}

.kowadu-flow-stage .container {
  width: min(100% - 48px, 1320px);
}

.kowadu-flow-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.45fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 30px;
}

.kowadu-flow-intro .kowadu-check-copy {
  max-width: 760px;
}

.kowadu-flow-intro .kowadu-check-copy h2 {
  max-width: 720px;
  color: white;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.94;
  text-wrap: balance;
}

.kowadu-flow-intro .kowadu-check-copy p[data-check-text] {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 20px;
}

.kowadu-flow-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: end;
  justify-content: flex-end;
}

.kowadu-flow-prompts span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 10px;
  border: 1px solid rgba(124, 231, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.kowadu-check-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: 44px;
  align-items: center;
}

.kowadu-check-copy h2 {
  max-width: 690px;
  color: var(--ink);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.98;
}

.kowadu-check-copy p {
  max-width: 570px;
  color: var(--muted);
  font-size: 20px;
}

.kowadu-check-note {
  width: fit-content;
  padding: 10px 13px;
  border: 1px solid rgba(124, 231, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 14px !important;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.kowadu-flow-board {
  position: relative;
  display: block;
  min-height: 760px;
}

.kowadu-flow-map {
  position: relative;
  display: block;
  min-height: 760px;
  padding: 0;
  border: 1px solid rgba(124, 231, 255, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 18%, rgba(124, 231, 255, 0.2), transparent 24%),
    radial-gradient(circle at 86% 78%, rgba(0, 153, 153, 0.24), transparent 28%),
    linear-gradient(rgba(124, 231, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 231, 255, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    #071a30;
  background-size: auto, auto, 36px 36px, 36px 36px, auto, auto;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 34px 100px rgba(0, 0, 0, 0.34);
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
}

.kowadu-flow-canvas {
  position: relative;
  min-width: 1030px;
  min-height: 760px;
}

.kowadu-flow-canvas::before {
  content: "";
  position: absolute;
  inset: 28px;
  min-width: 950px;
  background-image: url("data:image/svg+xml,%3Csvg width='980' height='620' viewBox='0 0 980 620' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M160 88 C250 88 274 88 352 102 C454 120 487 160 562 180 C678 210 704 292 618 338 C536 382 436 338 358 404 C292 460 348 548 516 548 C670 548 724 548 820 548' fill='none' stroke='%237ce7ff' stroke-opacity='.56' stroke-width='5' stroke-linecap='round'/%3E%3Cpath d='M570 210 C694 206 760 236 846 304' fill='none' stroke='%2300d4d4' stroke-opacity='.36' stroke-width='4' stroke-linecap='round' stroke-dasharray='10 13'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 18px 18px;
  background-size: 980px 620px;
  pointer-events: none;
}

.kowadu-flow-map::after {
  content: "Du klickst vorne einfach. Im Hintergrund entsteht dein Pfad für den Online-Treff.";
  position: absolute;
  left: 32px;
  bottom: 28px;
  z-index: 1;
  max-width: 460px;
  padding: 11px 13px;
  border: 1px solid rgba(124, 231, 255, 0.18);
  border-radius: 8px;
  background: rgba(4, 21, 40, 0.72);
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 850;
}

.kowadu-flow-node {
  position: absolute;
  z-index: 2;
  display: grid;
  align-content: start;
  width: 210px;
  min-height: 128px;
  padding: 17px;
  border: 1px solid rgba(124, 231, 255, 0.16);
  border-radius: 8px;
  background: rgba(8, 31, 58, 0.78);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.kowadu-flow-node[data-node-index="0"] {
  left: 38px;
  top: 58px;
}

.kowadu-flow-node[data-node-index="1"] {
  left: 282px;
  top: 74px;
}

.kowadu-flow-node[data-node-index="2"] {
  left: 528px;
  top: 118px;
}

.kowadu-flow-node[data-node-index="3"] {
  left: 760px;
  top: 210px;
}

.kowadu-flow-node[data-node-index="4"] {
  left: 626px;
  top: 380px;
}

.kowadu-flow-node[data-node-index="5"] {
  left: 380px;
  top: 430px;
}

.kowadu-flow-node[data-node-index="6"] {
  left: 122px;
  top: 366px;
}

.kowadu-flow-node[data-node-index="7"] {
  left: 780px;
  top: 552px;
}

.kowadu-flow-node span {
  color: #7ce7ff;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.kowadu-flow-node strong {
  margin-top: 8px;
  color: white;
  font-size: 15px;
  line-height: 1.15;
}

.kowadu-flow-node em {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(124, 231, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.kowadu-flow-node em.is-selected-answer {
  background: rgba(124, 231, 255, 0.22);
  color: white;
}

.kowadu-flow-node.is-active em {
  background: rgba(124, 231, 255, 0.18);
  color: #b9f7ff;
}

.kowadu-flow-node.is-active {
  border-color: rgba(124, 231, 255, 0.7);
  background:
    radial-gradient(circle at 90% 0%, rgba(124, 231, 255, 0.24), transparent 34%),
    linear-gradient(135deg, #063a6d, #06203c 70%);
  box-shadow: 0 24px 60px rgba(0, 165, 165, 0.24), 0 0 0 1px rgba(124, 231, 255, 0.12);
  transform: translateY(-4px);
}

.kowadu-flow-node.is-active span,
.kowadu-flow-node.is-active strong {
  color: white;
}

.kowadu-flow-node.is-done {
  border-color: rgba(0, 165, 165, 0.42);
  background: rgba(0, 153, 153, 0.2);
}

.kowadu-flow-connector {
  display: none;
}

.kowadu-check-card {
  position: absolute;
  z-index: 6;
  top: 50%;
  right: 34px;
  width: min(470px, calc(100% - 68px));
  transform: translateY(-50%);
  padding: 28px;
  border: 1px solid rgba(124, 231, 255, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 0%, rgba(124, 231, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(8, 31, 58, 0.96), rgba(4, 21, 40, 0.96));
  color: white;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
}

.kowadu-flow-stage .kowadu-check-card {
  min-height: 560px;
}

.kowadu-flow-stage .kowadu-check-progress,
.kowadu-flow-stage .kowadu-check-path {
  display: none;
}

.kowadu-check-progress {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.kowadu-check-progress div {
  overflow: hidden;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.kowadu-check-progress i {
  display: block;
  width: var(--check-progress, 33%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #00a5a5, #7ce7ff);
  transition: width 220ms ease;
}

.kowadu-check-path {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.kowadu-check-path span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(124, 231, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
}

.kowadu-check-path span.is-active {
  background: rgba(124, 231, 255, 0.26);
  color: #7ce7ff;
}

.kowadu-check-card h3 {
  margin: 8px 0 10px;
  color: white;
  font-size: clamp(32px, 3.4vw, 46px);
  line-height: 1.02;
}

.kowadu-check-card p {
  color: rgba(255, 255, 255, 0.78);
}

.kowadu-check-options {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.kowadu-check-option {
  width: 100%;
  min-height: 58px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.kowadu-check-mini-header {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.kowadu-check-mini-header span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 9px;
  border: 1px solid rgba(124, 231, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.kowadu-check-option:hover,
.kowadu-check-option:focus-visible {
  border-color: rgba(124, 231, 255, 0.72);
  background: rgba(0, 118, 255, 0.24);
  outline: none;
}

.kowadu-check-term {
  margin-top: 14px;
}

.kowadu-check-term button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #7ce7ff;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  text-decoration: underline;
  cursor: pointer;
}

.kowadu-check-term p {
  margin: 8px 0 0;
  padding: 12px;
  border: 1px solid rgba(124, 231, 255, 0.22);
  border-radius: 8px;
  background: rgba(5, 18, 34, 0.42);
  font-size: 14px;
}

.kowadu-check-term p a {
  color: #7ce7ff;
  font-weight: 900;
  text-decoration: underline;
}

.kowadu-check-aha {
  margin-top: 20px;
  padding: 16px;
  border: 1px solid rgba(124, 231, 255, 0.24);
  border-radius: 8px;
  background: rgba(5, 18, 34, 0.46);
}

.kowadu-check-aha small {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.45;
}

.kowadu-check-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.check-simple-page .intro-check-section,
.check-simple-page #ablauf,
.check-simple-page .case-section,
.check-simple-page section:has(> .reason-panel),
.check-simple-page .partner-info-section,
.check-simple-page #online-treff-abgrenzung,
.check-simple-page .faq-section,
.check-simple-page .final-cta {
  display: none;
}

.check-next-step-section {
  padding-top: 54px;
  padding-bottom: 54px;
}

.check-next-step-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.62fr) auto;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(0, 82, 204, 0.14);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(245, 250, 255, 0.98), rgba(232, 244, 255, 0.92));
  box-shadow: 0 20px 55px rgba(9, 34, 66, 0.08);
}

.check-next-step-panel h2 {
  margin: 5px 0 8px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
}

.check-next-step-panel p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
}

.check-next-step-list {
  display: grid;
  gap: 8px;
}

.check-next-step-list span {
  display: block;
  padding: 10px 12px;
  border: 1px solid rgba(0, 82, 204, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 610px;
  padding: 82px 0 70px;
  background: #102a43;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(9, 18, 32, 0.82) 0%, rgba(9, 18, 32, 0.48) 43%, rgba(9, 18, 32, 0.16) 100%),
    var(--hero-image);
  background-position: center, var(--hero-position, center top);
  background-size: cover, cover;
  background-repeat: no-repeat;
  transition: opacity 240ms ease;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 42%;
  background: linear-gradient(0deg, rgba(9, 18, 32, 0.36), transparent);
}

.hero.is-slide-next .hero-copy,
.hero.is-slide-next .hero-console,
.hero.is-slide-prev .hero-copy,
.hero.is-slide-prev .hero-console {
  animation-duration: 520ms;
  animation-timing-function: cubic-bezier(0.2, 0.74, 0.22, 1);
  animation-fill-mode: both;
}

.hero.is-slide-next .hero-copy,
.hero.is-slide-next .hero-console {
  animation-name: hero-swipe-next;
}

.hero.is-slide-prev .hero-copy,
.hero.is-slide-prev .hero-console {
  animation-name: hero-swipe-prev;
}

@keyframes hero-swipe-next {
  from {
    opacity: 0.55;
    transform: translateX(28px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes hero-swipe-prev {
  from {
    opacity: 0.55;
    transform: translateX(-28px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 780px);
  align-content: center;
  align-items: start;
  gap: 18px;
  min-height: 458px;
}

.hero-copy {
  min-width: 0;
  max-width: 100%;
  color: white;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.28);
}

.hero .eyebrow {
  color: #ffdf76;
}

.hero h1 {
  color: white;
  max-width: 760px;
  font-size: clamp(38px, 4.5vw, 60px);
  line-height: 1.02;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: keep-all;
  hyphens: none;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.88);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: 0;
}

.lead {
  max-width: 640px;
  margin: 24px 0 0;
  color: #343b48;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  min-width: 0;
  max-width: 100%;
  margin-top: 32px;
}

.hero .btn-secondary {
  background: rgba(255, 255, 255, 0.16);
  color: white;
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 52px;
  height: 76px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.26);
  color: white;
  font-size: 56px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease;
  backdrop-filter: blur(8px);
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  background: rgba(0, 140, 140, 0.72);
  transform: translateY(-50%) scale(1.03);
}

.carousel-prev {
  left: max(10px, calc((100vw - 1240px) / 2 - 86px));
}

.carousel-next {
  right: max(18px, calc((100vw - 1240px) / 2));
}

.hero-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
  width: min(620px, 100%);
}

.hero-dot {
  width: 34px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
}

.hero-dot.active {
  background: var(--amber);
}

.hero-console {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  width: min(620px, 100%);
  min-height: 54px;
  padding: 7px 7px 7px 10px;
  border: 2px solid var(--amber);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 14px 32px rgba(17, 24, 39, 0.16);
  color: var(--ink);
  text-shadow: none;
  backdrop-filter: blur(12px);
}

.hero[data-hide-compass="true"] .hero-console {
  display: none;
}

.console-top {
  display: none;
  gap: 6px;
  margin-bottom: 12px;
}

.console-top span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--ink);
}

.console-top span:nth-child(2) {
  background: var(--teal);
}

.console-top span:nth-child(3) {
  background: var(--amber);
}

.signal-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: center;
  min-width: 0;
  padding: 0 4px 0 0;
  border-radius: 0;
  background: transparent;
  border: 0;
}

.signal-k {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--blush);
  color: var(--ink);
  font-size: 20px;
  font-weight: 950;
}

.signal-card p,
.topic-result {
  margin: 3px 0 0;
  color: var(--muted);
}

.hero .signal-card strong {
  font-size: 13px;
  white-space: nowrap;
}

.hero .signal-card p {
  display: none;
}

.hero-contact-card .signal-card p {
  display: block;
  max-width: 310px;
  margin: 1px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero .btn-dark {
  min-width: 128px;
  min-height: 40px;
  padding: 0 18px;
  font-size: 14px;
}

.hero .btn-dark .btn-icon {
  width: 18px;
  height: 18px;
  font-size: 16px;
}

.hero-picker {
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 0 8px;
  margin-top: 0;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

select,
input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  color: var(--ink);
  padding: 0 14px;
  font: inherit;
}

.hero-picker label {
  grid-column: 1;
  grid-row: 1;
  gap: 0;
  padding-left: 10px;
  font-size: 11px;
}

.hero-picker select {
  grid-column: 1;
  grid-row: 2;
  min-height: 24px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  padding: 0 8px;
  font-size: 14px;
}

.hero-picker button {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.topic-result {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.slide-topics {
  display: none;
}

.slide-topics span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 900;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: -36px;
  position: relative;
  z-index: 2;
}

.legal-strip {
  margin-top: 24px;
  padding: 14px 18px;
  border: 1px solid rgba(0, 140, 140, 0.28);
  border-radius: var(--radius);
  background: rgba(223, 244, 238, 0.58);
  color: var(--muted);
  font-size: 13px;
}

.legal-strip[hidden] {
  display: none;
}

.legal-strip strong {
  color: var(--ink);
}

.legal-strip summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
}

.legal-strip p {
  margin: 12px 0 0;
}

.mini-card,
.advice-card,
.check-card,
.product-card,
.article-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.06);
}

.mini-card {
  display: grid;
  gap: 7px;
  min-height: 128px;
  padding: 18px;
  text-decoration: none;
}

.mini-card small {
  color: var(--muted);
}

.line-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 2px solid var(--teal);
  border-radius: 12px;
  background: var(--soft);
  color: var(--teal);
}

.line-icon::before,
.line-icon::after {
  content: "";
  grid-area: 1 / 1;
  display: block;
}

.line-icon::before {
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
}

.shield::before {
  width: 16px;
  height: 18px;
  border: 0;
  background: currentColor;
  clip-path: polygon(50% 0, 86% 14%, 82% 60%, 50% 100%, 18% 60%, 14% 14%);
}

.chat::before {
  border-radius: 4px;
}

.spark::before {
  width: 14px;
  height: 14px;
  border: 0;
  background: var(--amber);
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
}

.book::before {
  width: 18px;
  height: 16px;
  border-radius: 4px;
}

.book::after {
  width: 2px;
  height: 16px;
  background: currentColor;
}

.cross::before {
  width: 15px;
  height: 15px;
  border: 0;
  background: linear-gradient(var(--teal), var(--teal)) center / 100% 4px no-repeat,
    linear-gradient(var(--teal), var(--teal)) center / 4px 100% no-repeat;
}

.health::before {
  width: 15px;
  height: 15px;
  border: 0;
  background: linear-gradient(var(--teal), var(--teal)) center / 100% 4px no-repeat,
    linear-gradient(var(--teal), var(--teal)) center / 4px 100% no-repeat;
}

.chart::before {
  width: 20px;
  height: 18px;
  border: 0;
  background:
    linear-gradient(currentColor, currentColor) 2px 10px / 4px 8px no-repeat,
    linear-gradient(currentColor, currentColor) 8px 6px / 4px 12px no-repeat,
    linear-gradient(currentColor, currentColor) 14px 2px / 4px 16px no-repeat;
}

.chart::after {
  width: 19px;
  height: 14px;
  border: 0;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: skew(-12deg);
}

.stock::before {
  width: 22px;
  height: 18px;
  border: 0;
  background:
    linear-gradient(currentColor, currentColor) 3px 12px / 4px 6px no-repeat,
    linear-gradient(currentColor, currentColor) 9px 9px / 4px 9px no-repeat,
    linear-gradient(currentColor, currentColor) 15px 5px / 4px 13px no-repeat;
}

.stock::after {
  width: 20px;
  height: 14px;
  border: 0;
  background:
    linear-gradient(135deg, transparent 43%, currentColor 45%, currentColor 55%, transparent 57%) 2px 4px / 15px 9px no-repeat,
    linear-gradient(currentColor, currentColor) right 1px top 3px / 6px 2px no-repeat,
    linear-gradient(currentColor, currentColor) right 1px top 3px / 2px 6px no-repeat;
  transform: translateY(-2px);
}

.work::before {
  width: 18px;
  height: 13px;
  border: 2px solid currentColor;
  border-top-width: 5px;
  border-radius: 4px;
  transform: none;
}

.work::after {
  width: 8px;
  height: 5px;
  margin-top: -16px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
}

.income::before {
  width: 20px;
  height: 15px;
  margin-top: 4px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.income::after {
  width: 10px;
  height: 6px;
  margin-top: -14px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
  box-shadow: 0 15px 0 -3px currentColor;
}

.bike::before {
  width: 22px;
  height: 10px;
  margin-top: 10px;
  border: 0;
  border-bottom: 2px solid currentColor;
  background:
    radial-gradient(circle, transparent 49%, currentColor 52%, currentColor 62%, transparent 65%) left bottom / 10px 10px no-repeat,
    radial-gradient(circle, transparent 49%, currentColor 52%, currentColor 62%, transparent 65%) right bottom / 10px 10px no-repeat;
}

.bike::after {
  width: 14px;
  height: 11px;
  margin-top: 2px;
  border: 0;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: skew(-24deg);
}

.home::before {
  width: 15px;
  height: 15px;
  border-radius: 2px;
  transform: rotate(45deg);
}

.home::after {
  width: 14px;
  height: 11px;
  margin-top: 6px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 3px 3px;
  background: var(--soft);
}

.key::before {
  width: 11px;
  height: 11px;
  margin-left: -11px;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.key::after {
  width: 21px;
  height: 12px;
  margin-left: 8px;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(currentColor, currentColor) left center / 19px 3px no-repeat,
    linear-gradient(currentColor, currentColor) right 1px bottom 1px / 3px 7px no-repeat,
    linear-gradient(currentColor, currentColor) right 7px bottom 1px / 3px 5px no-repeat;
}

.car::before {
  width: 23px;
  height: 14px;
  margin-top: -2px;
  border: 2px solid currentColor;
  border-radius: 7px 7px 4px 4px;
  background:
    linear-gradient(currentColor, currentColor) center 5px / 13px 2px no-repeat,
    linear-gradient(currentColor, currentColor) left 3px bottom 3px / 4px 2px no-repeat,
    linear-gradient(currentColor, currentColor) right 3px bottom 3px / 4px 2px no-repeat;
}

.car::after {
  width: 23px;
  height: 7px;
  margin-top: 14px;
  border: 0;
  background:
    radial-gradient(circle, currentColor 0 2.5px, transparent 2.8px) left 3px center / 7px 7px no-repeat,
    radial-gradient(circle, currentColor 0 2.5px, transparent 2.8px) right 3px center / 7px 7px no-repeat;
}

.wallet::before {
  width: 18px;
  height: 13px;
  border-radius: 4px;
}

.wallet::after {
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-radius: 999px;
  background: currentColor;
}

.team::before {
  width: 9px;
  height: 9px;
  margin-top: -11px;
  border: 0;
  border-radius: 999px;
  background: currentColor;
  box-shadow: -9px 5px 0 -1px currentColor, 9px 5px 0 -1px currentColor;
}

.team::after {
  width: 25px;
  height: 12px;
  margin-top: 10px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 14px 14px;
}

.badge::before {
  width: 22px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.badge::after {
  width: 16px;
  height: 9px;
  border: 0;
  background:
    radial-gradient(circle, currentColor 0 3px, transparent 3.2px) left center / 7px 7px no-repeat,
    linear-gradient(currentColor, currentColor) right 2px top 2px / 8px 2px no-repeat,
    linear-gradient(currentColor, currentColor) right 2px bottom 2px / 8px 2px no-repeat;
}

.users::before {
  width: 8px;
  height: 8px;
  margin-top: -10px;
  border: 0;
  border-radius: 999px;
  background: currentColor;
  box-shadow: -8px 4px 0 -1px currentColor, 8px 4px 0 -1px currentColor;
}

.users::after {
  width: 22px;
  height: 11px;
  margin-top: 9px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 12px 12px;
}

.family::before {
  width: 18px;
  height: 16px;
  border: 0;
  background: currentColor;
  clip-path: polygon(50% 95%, 14% 58%, 7% 39%, 12% 18%, 28% 8%, 43% 18%, 50% 28%, 57% 18%, 72% 8%, 88% 18%, 93% 39%, 86% 58%);
}

.family::after {
  width: 23px;
  height: 23px;
  margin: 0;
  border: 2px solid currentColor;
  border-radius: 999px;
  background: transparent;
  opacity: 0.2;
}

.tooth::before {
  width: 18px;
  height: 20px;
  border: 0;
  background: currentColor;
  clip-path: polygon(18% 8%, 35% 0, 50% 8%, 65% 0, 82% 8%, 92% 26%, 78% 100%, 58% 62%, 50% 54%, 42% 62%, 22% 100%, 8% 26%);
}

.plane::before {
  width: 21px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(-28deg);
}

.plane::after {
  width: 14px;
  height: 14px;
  border: 0;
  background: currentColor;
  clip-path: polygon(0 42%, 100% 0, 62% 50%, 100% 100%);
  transform: rotate(-28deg);
}

.travel::before {
  width: 18px;
  height: 17px;
  margin-top: 5px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.travel::after {
  width: 10px;
  height: 7px;
  margin-top: -15px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
}

.paw::before {
  width: 7px;
  height: 7px;
  margin-top: -9px;
  border: 0;
  border-radius: 999px;
  background: currentColor;
  box-shadow: -8px 3px 0 -1px currentColor, 8px 3px 0 -1px currentColor, -4px -7px 0 -2px currentColor, 4px -7px 0 -2px currentColor;
}

.paw::after {
  width: 18px;
  height: 15px;
  margin-top: 10px;
  border: 0;
  border-radius: 12px 12px 9px 9px;
  background: currentColor;
}

.section {
  padding: 76px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.row-heading {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.text-link {
  color: var(--teal-dark);
  font-weight: 900;
}

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

.advice-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 236px;
  padding: 22px;
}

.advice-card.featured {
  background: var(--soft);
  border-color: rgba(0, 140, 140, 0.35);
}

.advice-card p,
.check-card p,
.product-card p,
.article-card p {
  margin: 0;
  color: var(--muted);
}

.advice-card a,
.check-card a {
  margin-top: auto;
  color: var(--teal-dark);
  font-weight: 900;
}

.split-band {
  background: #f7fbfa;
  border-block: 1px solid var(--line);
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.check-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 16px;
  padding: 22px;
}

.check-card h3,
.check-card p,
.check-card a {
  grid-column: 2;
}

.check-card .line-icon {
  grid-row: 1 / span 3;
}

.product-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.chip {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.chip.active {
  background: var(--ink);
  color: white;
}

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

.product-card {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.tag {
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
}

.knowledge-band {
  background: var(--ink);
  color: white;
}

.knowledge-band .eyebrow {
  color: var(--amber);
}

.knowledge-band .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

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

.article-card {
  min-height: 220px;
  padding: 22px;
  background: #182232;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.article-card span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.article-card h3 {
  margin: 14px 0 10px;
}

.article-card p {
  color: rgba(255, 255, 255, 0.72);
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: 48px;
  align-items: center;
}

.trust-layout p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.trust-points {
  display: grid;
  gap: 12px;
}

.trust-points div {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.trust-points strong {
  color: var(--teal);
  font-size: 22px;
}

.final-cta {
  padding: 72px 0;
}

.home-v1 .final-cta {
  padding: 0;
  background: #07162c;
  color: white;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: center;
  padding: 34px;
  border: 2px dashed var(--teal);
  border-radius: 20px;
  background: rgba(255, 253, 249, 0.88);
}

.home-v1 .cta-panel {
  padding-block: 78px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.home-v1 .cta-panel h2 {
  color: white;
}

.home-v1 .cta-panel p:not(.eyebrow),
.home-v1 .appointment-smallprint {
  color: rgba(255, 255, 255, 0.78);
}

.home-v1 .appointment-smallprint summary {
  color: white;
}

.cta-panel > *,
.lead-form {
  min-width: 0;
}

.lead-form {
  display: grid;
  gap: 14px;
}

.appointment-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 8%, rgba(0, 153, 153, 0.14), transparent 28%),
    linear-gradient(180deg, #eef8f8 0%, #fbfaf7 38%, #f7f4ee 100%);
}

.appointment-hero {
  padding: 70px 0 28px;
}

.appointment-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) 320px;
  gap: 38px;
  align-items: start;
}

.appointment-hero h1 {
  max-width: 760px;
  margin-bottom: 14px;
}

.appointment-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
}

.appointment-trust-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 14px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.appointment-hero .appointment-trust-card {
  margin-top: 0;
}

.appointment-trust-card .signal-k {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: white;
  font-size: 25px;
  box-shadow: 0 14px 28px rgba(0, 92, 190, 0.25);
}

.appointment-trust-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.05;
}

.appointment-trust-card p {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.appointment-shell {
  padding: 34px 0 84px;
}

.appointment-card {
  max-width: 820px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 18px;
  background: white;
  box-shadow: 0 24px 70px rgba(12, 25, 42, 0.16);
}

.appointment-progress {
  height: 8px;
  background: #d9eef0;
}

.appointment-progress span {
  display: block;
  height: 100%;
  width: var(--progress, 12.5%);
  background: var(--teal);
  transition: width 0.25s ease;
}

.appointment-step {
  display: none;
  padding: 34px;
}

.appointment-step.active {
  display: block;
}

.appointment-step h2 {
  margin-bottom: 8px;
  font-size: clamp(24px, 4vw, 32px);
}

.appointment-step > p {
  color: var(--muted);
  margin-top: 0;
}

.choice-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.choice-item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  padding: 13px 14px;
  border: 1px solid #aebbd0;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.choice-item:hover,
.choice-item:has(input:checked) {
  border-color: var(--teal);
  background: rgba(0, 153, 153, 0.08);
}

.choice-item.is-disabled {
  opacity: 0.46;
  cursor: not-allowed;
  background: #f6f8f8;
}

.choice-item input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
}

.appointment-fields {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.appointment-fields label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.appointment-fields input,
.appointment-fields textarea {
  width: 100%;
  border: 1px solid #b8c5d4;
  border-radius: 8px;
  padding: 14px 16px;
  font: inherit;
  background: white;
}

.appointment-fields textarea {
  min-height: 112px;
  resize: vertical;
}

.appointment-info-note {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 14px;
  border: 1px solid rgba(20, 184, 116, 0.38);
  border-radius: 8px;
  background: linear-gradient(135deg, #062d2f, #0b3a3d);
  color: #fff;
  box-shadow: 0 14px 30px rgba(6, 45, 47, 0.12);
}

.appointment-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-top: 0;
  border-radius: 999px;
  background: #22c55e;
  color: #fff;
  box-shadow: 0 6px 14px rgba(34, 197, 94, 0.28);
}

.appointment-info-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.appointment-info-note p {
  margin: 0;
  line-height: 1.5;
  font-weight: 760;
  overflow-wrap: anywhere;
}

.appointment-info-note strong {
  color: #22c55e;
}

.contact-choice-list {
  margin-top: 4px;
}

.appointment-social-privacy {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 780;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.appointment-error {
  display: none;
  margin: 18px 34px 0;
  padding: 12px 14px;
  border: 1px solid #d94032;
  border-radius: 10px;
  background: #fff4f2;
  color: #9f1d14;
  font-weight: 850;
}

.appointment-error.visible {
  display: block;
}

.appointment-check-context {
  margin: 18px 34px 0;
  padding: 16px 18px;
  border: 1px solid rgba(0, 140, 140, 0.24);
  border-radius: 8px;
  background: rgba(223, 244, 238, 0.62);
  color: var(--ink);
}

.appointment-check-context strong {
  display: block;
  margin-bottom: 4px;
}

.appointment-check-context p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.appointment-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #0784aa;
}

.appointment-actions button {
  border: 0;
  padding: 20px 24px;
  color: white;
  background: #0b8eb6;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.appointment-actions button:first-child {
  text-align: left;
  background: #0992bc;
}

.appointment-actions button:last-child {
  text-align: right;
  background: #067ca0;
}

.appointment-actions button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.appointment-smallprint {
  max-width: 820px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 13px;
}

.lead-form .appointment-smallprint {
  max-width: none;
  margin: 0;
}

.appointment-smallprint summary,
.footer-disclaimer summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
}

.appointment-smallprint p,
.footer-disclaimer p {
  margin: 10px 0 0;
}

.thank-you-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 22px;
  align-items: center;
  padding: 38px;
  border-radius: 22px;
  background: linear-gradient(135deg, #101827 0%, #0b3e68 100%);
  color: white;
}

.thank-you-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(11, 24, 39, 0.96) 0%, rgba(11, 24, 39, 0.82) 48%, rgba(11, 24, 39, 0.48) 100%),
    url("assets/hero-versicherungscheck-ai.webp");
  background-position: center, center 20%;
  background-size: cover, cover;
}

.thank-you-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.thank-you-panel .appointment-trust-card {
  min-width: 0;
  justify-self: end;
  padding: 20px;
  color: var(--ink);
}

.thank-you-panel .appointment-trust-card p {
  color: var(--muted);
}

.thank-you-panel .appointment-trust-card h2 {
  font-size: 24px;
}

.thank-you-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.thank-you-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.footer {
  padding: 54px 0;
  background: #f4f4f1;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
}

.footer-logo {
  width: 170px;
  margin-bottom: 12px;
}

.footer-disclaimer {
  max-width: 360px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.footer h3 {
  margin-bottom: 10px;
  font-size: 15px;
}

.footer a {
  display: block;
  margin: 8px 0;
  color: var(--muted);
  text-decoration: none;
}

.footer a:hover {
  color: var(--teal-dark);
}

.footer-social-block {
  margin-top: 18px;
}

.footer-social-block h3 {
  margin: 0 0 10px;
}

.footer-social-links {
  align-items: center;
}

.footer .social-links {
  display: inline-flex;
  gap: 10px;
}

.footer .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  margin: 0;
  color: white;
}

.footer .social-link:hover,
.footer .social-link:focus-visible {
  color: white;
}

.footer .social-link svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 1240px) {
  .header-social-links {
    display: none;
  }
}

.legal-page {
  padding: 70px 0;
}

.legal-page article {
  max-width: 860px;
}

.legal-page h1 {
  font-size: clamp(36px, 6vw, 60px);
  margin-bottom: 24px;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

.legal-box {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.knowledge-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 84px 0 48px;
  background: #07162c;
  color: white;
}

.knowledge-hero-backgrounds {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.knowledge-hero-backgrounds::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 22, 44, 0.95) 0%, rgba(7, 22, 44, 0.84) 44%, rgba(7, 22, 44, 0.42) 72%, rgba(7, 22, 44, 0.2) 100%),
    linear-gradient(180deg, rgba(7, 22, 44, 0.18), rgba(7, 22, 44, 0.62));
}

.knowledge-hero-bg {
  position: absolute;
  inset: -3%;
  background-image: var(--knowledge-bg-image);
  background-position: var(--knowledge-bg-position, center);
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.02) translate3d(0, 0, 0);
  filter: saturate(1.02) contrast(1.08);
  transition: opacity 1100ms ease, transform 12000ms ease;
}

.knowledge-hero-bg.is-active {
  opacity: 1;
  transform: scale(1.065) translate3d(var(--knowledge-bg-drift-x, 0), var(--knowledge-bg-drift-y, 0), 0);
}

.knowledge-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 42px;
  align-items: center;
}

.knowledge-hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
  color: white;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.26);
}

.knowledge-hero .lead {
  max-width: 730px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 21px;
  font-weight: 700;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.22);
}

.knowledge-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.knowledge-hero-actions .btn {
  min-height: 46px;
}

.knowledge-hero-actions .btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.knowledge-hero-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.13);
  color: white;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.knowledge-hero-card h2 {
  margin: 0;
  font-size: 24px;
}

.knowledge-hero-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 650;
}

.signal-k {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #0084ff, #083a9f);
  color: white;
  font-size: 28px;
  font-weight: 950;
  box-shadow: 0 14px 30px rgba(0, 92, 190, 0.25);
}

.knowledge-index {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 30px 0 8px;
}

.knowledge-index a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px 12px;
  align-items: start;
  min-height: 108px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(17, 24, 39, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.knowledge-index .line-icon {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  border-radius: 14px;
}

.knowledge-index strong {
  display: block;
  min-width: 0;
  color: var(--ink);
  line-height: 1.05;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.knowledge-index small {
  display: block;
  min-width: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.28;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.knowledge-index a:hover,
.knowledge-index a:focus-visible {
  border-color: rgba(0, 140, 140, 0.5);
  color: var(--teal-dark);
  background: var(--soft);
  box-shadow: 0 18px 42px rgba(0, 140, 140, 0.12);
  transform: translateY(-2px);
  outline: none;
}

.knowledge-index a:hover strong,
.knowledge-index a:focus-visible strong {
  color: var(--teal-dark);
}

@media (max-width: 1080px) {
  .home-pain-focus {
    grid-template-columns: 1fr;
  }

  .home-pain-side {
    display: none;
  }

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

@media (max-width: 520px) {
  .knowledge-index {
    grid-template-columns: 1fr;
  }
}

.knowledge-category {
  padding: 54px 0;
  scroll-margin-top: 110px;
}

.knowledge-category + .knowledge-category {
  border-top: 1px solid rgba(217, 229, 228, 0.7);
}

.knowledge-category-head {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 220px;
  align-content: end;
  padding: 30px;
  border-radius: 18px;
  background: #081827;
  color: white;
  box-shadow: 0 20px 55px rgba(17, 24, 39, 0.12);
}

.knowledge-category-head::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(3, 13, 25, 0.94) 0%, rgba(3, 13, 25, 0.86) 34%, rgba(3, 13, 25, 0.58) 56%, rgba(3, 13, 25, 0.22) 80%, rgba(3, 13, 25, 0.06) 100%),
    var(--category-image);
  background-position: center, var(--category-position, center 42%);
  background-size: cover, var(--category-size, cover);
  background-repeat: no-repeat;
  transform: scale(1);
}

.knowledge-category-head::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 13, 25, 0.28) 0%, rgba(3, 13, 25, 0.2) 36%, rgba(3, 13, 25, 0.1) 58%, rgba(3, 13, 25, 0) 78%),
    radial-gradient(circle at 54% 50%, rgba(3, 13, 25, 0.18), transparent 38%);
}

.about-hero,
.theme-hero {
  padding: 72px 0;
  background:
    radial-gradient(circle at 78% 14%, rgba(0, 153, 153, 0.14), transparent 30%),
    linear-gradient(135deg, #f4faf8 0%, #fffdf9 58%, #f7f1ec 100%);
}

.about-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 640px;
  display: grid;
  align-items: center;
  background: #e8f5ff;
}

.about-hero-backgrounds {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  pointer-events: none;
}

.about-hero-bg {
  position: absolute;
  inset: -3%;
  background-image: var(--about-bg-image);
  background-position: var(--about-bg-position, center);
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.02) translate3d(0, 0, 0);
  filter: saturate(1.04) contrast(1.06);
  transition: opacity 1300ms ease, transform 12000ms ease;
}

.about-hero-bg.is-active {
  opacity: 1;
  transform: scale(1.065) translate3d(var(--about-bg-drift-x, 0), var(--about-bg-drift-y, 0), 0);
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(229, 244, 255, 0.92) 0%, rgba(229, 244, 255, 0.8) 52%, rgba(229, 244, 255, 0.42) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(102, 178, 232, 0.26));
  transform-origin: center;
  animation: about-background-pan 30s ease-in-out infinite alternate;
  pointer-events: none;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 72% 24%, rgba(0, 118, 255, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 253, 249, 0.18));
  pointer-events: none;
}

@keyframes about-background-pan {
  from {
    transform: scale(1.01) translateX(-0.8%);
  }

  to {
    transform: scale(1.025) translateX(0.8%);
  }
}

.about-hero-grid,
.theme-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.52fr);
  gap: 54px;
  align-items: center;
}

.about-hero-grid {
  position: relative;
  z-index: 1;
}

.about-hero h1 {
  max-width: 780px;
  font-size: clamp(54px, 7vw, 96px);
  line-height: 0.92;
}

.about-hero .lead {
  max-width: 690px;
  font-size: clamp(18px, 2vw, 23px);
}

.about-focus-panel {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(0, 82, 204, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 26px 70px rgba(9, 34, 66, 0.14);
  backdrop-filter: blur(16px);
}

.about-focus-panel .signal-k {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: white;
  font-size: 26px;
}

.about-focus-panel h2 {
  max-width: 340px;
  margin: 0;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 0.98;
}

.about-focus-panel p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.about-mini-list {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}

.about-mini-list span {
  padding: 10px 12px;
  border: 1px solid rgba(0, 82, 204, 0.12);
  border-radius: 8px;
  background: rgba(247, 251, 255, 0.9);
  color: var(--ink);
  font-weight: 900;
}

.page-signal-card {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.page-signal-card .signal-k {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: white;
}

.principle-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--teal-dark);
  font-size: 13px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0;
  white-space: nowrap;
  justify-self: start;
  align-self: start;
}

.theme-note {
  padding: 18px;
  border: 1px solid rgba(0, 140, 140, 0.28);
  border-radius: var(--radius);
  background: rgba(223, 244, 238, 0.58);
  color: var(--muted);
}

.about-principle-grid,
.profession-grid,
.theme-card-grid,
.theme-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-principle,
.profession-card,
.theme-card,
.theme-link-card {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.06);
  text-decoration: none;
}

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

.about-flow-grid article {
  min-height: 220px;
  padding: 24px;
  border-radius: 8px;
  background: #06172b;
  color: white;
  box-shadow: 0 18px 42px rgba(9, 34, 66, 0.12);
}

.about-flow-grid strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(124, 231, 255, 0.16);
  color: #7ce7ff;
}

.about-flow-grid h3 {
  margin: 42px 0 12px;
  color: white;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
}

.about-flow-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.about-name-section {
  background: #f3fbfc;
}

.about-value-list {
  display: grid;
  gap: 10px;
}

.about-value-list span {
  padding: 16px 18px;
  border: 1px solid rgba(0, 82, 204, 0.12);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.05);
}

.profession-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 18%;
  border-radius: var(--radius);
}

.theme-media-hero {
  position: relative;
  overflow: hidden;
  min-height: 410px;
  display: grid;
  align-items: end;
  padding: 42px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(3, 13, 25, 0.92) 0%, rgba(3, 13, 25, 0.68) 42%, rgba(3, 13, 25, 0.14) 100%),
    var(--theme-image);
  background-position: center, var(--theme-position, center 18%);
  background-size: cover, cover;
  color: white;
  box-shadow: var(--shadow);
}

.theme-media-hero h1 {
  max-width: 760px;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 0.98;
}

.theme-media-hero .lead {
  color: rgba(255, 255, 255, 0.88);
}

.info-table.compact {
  min-width: 0;
}

.thank-you-card {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 26px;
  min-height: 210px;
}

.thank-you-card h2 {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin: 0;
  font-size: clamp(22px, 1.75vw, 30px);
  line-height: 1.04;
  text-wrap: balance;
  word-break: normal;
  hyphens: none;
}

.thank-you-step-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--teal);
  font-weight: 950;
  font-size: 18px;
  line-height: 1;
  border-radius: 14px;
  background: rgba(0, 153, 153, 0.1);
}

.thank-you-card p {
  margin: 0;
  max-width: 30rem;
}

.knowledge-category-head > * {
  position: relative;
  z-index: 2;
  min-width: 0;
  overflow-wrap: break-word;
}

.knowledge-category-head .eyebrow {
  color: #ffdf76;
}

.knowledge-category-head h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1;
  hyphens: auto;
}

.knowledge-category-head p:not(.eyebrow) {
  max-width: 660px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  font-weight: 700;
}

.knowledge-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.knowledge-topic-grid article,
.knowledge-topic-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
  min-height: 176px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.06);
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.knowledge-topic-card:hover,
.knowledge-topic-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(0, 140, 140, 0.42);
  box-shadow: 0 18px 38px rgba(17, 24, 39, 0.1);
}

.knowledge-topic-grid h3,
.knowledge-topic-card h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.14;
  overflow-wrap: anywhere;
}

.knowledge-topic-grid p,
.knowledge-topic-card p {
  margin: 0;
  color: var(--muted);
  overflow-wrap: break-word;
}

.knowledge-topic-card .knowledge-simple {
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(0, 140, 140, 0.18);
  border-radius: 8px;
  background: rgba(223, 244, 238, 0.62);
  color: #12314f;
  font-size: 14px;
  line-height: 1.45;
}

.knowledge-topic-card .knowledge-simple strong {
  display: inline;
  margin: 0;
  color: var(--teal-dark);
  font-size: inherit;
}

.knowledge-topic-card strong {
  margin-top: auto;
  color: var(--teal-dark);
  font-size: 14px;
}

.topic-tag,
.tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 31px;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--teal-dark);
  font-size: 14px;
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: 0;
  white-space: nowrap;
  justify-self: start;
  align-self: start;
}

.article-page {
  background: var(--paper);
}

.article-hero {
  position: relative;
  overflow: hidden;
  padding: 58px 0 48px;
  background: #081827;
  color: white;
}

.article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 13, 25, 0.94) 0%, rgba(3, 13, 25, 0.72) 48%, rgba(3, 13, 25, 0.28) 100%),
    var(--category-image);
  background-position: center, var(--category-position, center 42%);
  background-size: cover, var(--category-size, cover);
  background-repeat: no-repeat;
  transform: scale(1);
}

.article-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 24px;
  align-items: end;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 850;
}

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

.breadcrumbs a:hover {
  color: white;
}

.article-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: 52px;
  line-height: 1.03;
  letter-spacing: 0;
  text-wrap: balance;
}

.article-hero .lead {
  max-width: 780px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 21px;
  font-weight: 700;
}

.article-signal-card {
  display: grid;
  justify-self: end;
  align-self: end;
  max-width: 240px;
  gap: 9px;
  padding: 14px;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  background: rgba(255, 253, 249, 0.94);
  color: var(--ink);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}

.article-signal-card .signal-k {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  font-size: 21px;
}

.article-signal-top {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.article-signal-card strong {
  font-size: 14px;
  line-height: 1.25;
}

.article-signal-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 650;
}

.article-signal-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: fit-content;
  margin-top: 2px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--teal);
  color: white;
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0, 150, 151, 0.18);
}

.article-signal-link:hover,
.article-signal-link:focus-visible {
  background: var(--blue);
}

.profession-pain {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(0, 140, 140, 0.14);
  background:
    radial-gradient(circle at 88% 20%, rgba(0, 118, 255, 0.11), transparent 26%),
    linear-gradient(135deg, #ffffff 0%, #f0fbff 52%, #fff7e6 100%);
}

.profession-pain-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr);
  gap: 28px;
  align-items: center;
  padding: 28px 0;
}

.profession-pain-main,
.profession-pain-check {
  min-width: 0;
}

.profession-pain-main h2 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.profession-pain-main p:not(.eyebrow) {
  max-width: 760px;
  margin: 14px 0 0;
  color: #344256;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 760;
}

.profession-pain-check {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px 13px;
  align-items: center;
  justify-self: stretch;
  padding: 20px;
  border: 1px solid rgba(0, 140, 140, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.profession-pain-check .signal-k {
  grid-row: 1 / span 3;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: white;
  box-shadow: 0 12px 28px rgba(0, 118, 255, 0.2);
}

.profession-pain-check strong {
  color: var(--ink);
  font-size: 19px;
  line-height: 1.2;
}

.profession-pain-check p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.profession-pain-check .btn {
  justify-self: start;
  margin-top: 4px;
}

@media (max-width: 760px) {
  .profession-pain-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 0;
  }

  .profession-pain-main h2 {
    font-size: 38px;
    line-height: 1.02;
  }

  .profession-pain-main p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.48;
  }

  .profession-pain-check {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 16px;
    border-radius: 14px;
  }

  .profession-pain-check .signal-k {
    width: 42px;
    height: 42px;
  }

  .profession-pain-check strong {
    font-size: 17px;
  }

  .profession-pain-check .btn {
    width: 100%;
    justify-content: center;
  }
}

.article-hero-grid > * {
  min-width: 0;
}

.article-hero h1,
.article-hero .lead,
.breadcrumbs {
  overflow-wrap: break-word;
}

.article-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 34px;
  padding: 54px 0 70px;
  align-items: start;
}

.article-toc {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.06);
}

.article-toc h2 {
  margin: 0 0 6px;
  font-size: 18px;
}

.article-toc a {
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.article-toc a:hover,
.article-toc a:focus-visible {
  background: var(--soft);
  color: var(--teal-dark);
}

.knowledge-article {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.article-section {
  min-width: 0;
  max-width: 100%;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.05);
  scroll-margin-top: 110px;
}

.article-section h2 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.16;
  overflow-wrap: break-word;
  hyphens: auto;
}

.article-section h3 {
  margin: 0 0 10px;
}

.article-section p {
  max-width: 820px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 620;
}

.simple-explain-card {
  max-width: 820px;
  margin: 16px 0;
  padding: 18px;
  border: 1px solid rgba(0, 140, 140, 0.2);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(223, 244, 238, 0.78), rgba(235, 248, 255, 0.86));
}

.simple-explain-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.simple-explain-card p {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 750;
  line-height: 1.45;
}

.article-visual {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  margin: 0;
  border-radius: 18px;
  border: 1px solid rgba(0, 140, 140, 0.18);
  background:
    linear-gradient(90deg, rgba(3, 13, 25, 0.74) 0%, rgba(3, 13, 25, 0.18) 62%, rgba(3, 13, 25, 0.04) 100%),
    var(--visual-image);
  background-position: center, var(--visual-position, center 42%);
  background-size: cover, cover;
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.08);
}

.article-visual figcaption {
  position: absolute;
  left: 22px;
  bottom: 20px;
  max-width: 380px;
  margin: 0;
  color: white;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.35;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.article-check-list,
.article-callout {
  margin-top: 18px;
  padding: 20px;
  border-radius: 14px;
  background: var(--soft);
  border: 1px solid rgba(0, 140, 140, 0.2);
}

.article-check-list ul,
.document-list,
.mistake-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 650;
}

.term-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.term-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 900;
}

.term-explain-grid,
.josef-basics-grid,
.self-check-grid,
.document-explain-list,
.mistake-explain-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.josef-basics-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.term-explain-card,
.josef-basics-grid article,
.self-check-grid article,
.document-explain-list article,
.mistake-explain-list article {
  display: grid;
  gap: 7px;
  align-content: start;
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(0, 140, 140, 0.18);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(12, 37, 55, 0.07);
}

.term-explain-card strong,
.josef-basics-grid strong,
.self-check-grid strong,
.document-explain-list strong,
.mistake-explain-list strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.term-explain-card span,
.josef-basics-grid span,
.self-check-grid span,
.document-explain-list span,
.mistake-explain-list span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.term-explain-card small {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 820;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.article-callout {
  display: grid;
  gap: 6px;
  background: #fff7df;
  border-color: rgba(255, 176, 32, 0.42);
}

.article-callout span {
  color: #5c4614;
  font-weight: 700;
}

.article-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  margin: 22px 0;
  padding: 22px;
  border: 1px solid rgba(0, 140, 140, 0.26);
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 18%, rgba(0, 118, 255, 0.12), transparent 28%),
    linear-gradient(135deg, #effcff 0%, #ffffff 58%, #fff7e5 100%);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}

.article-cta-card > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  align-items: center;
  min-width: 0;
  max-width: 100%;
}

.article-cta-card .signal-k {
  grid-row: 1 / span 3;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: white;
  box-shadow: 0 10px 22px rgba(0, 118, 255, 0.22);
}

.article-cta-card .eyebrow {
  margin: 0;
  color: var(--teal-dark);
  font-size: 12px;
}

.article-cta-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.12;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.article-cta-card p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  overflow-wrap: break-word;
}

.mistake-list li::marker {
  color: var(--amber);
}

.article-highlight {
  display: grid;
  gap: 6px;
  margin: 18px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--teal);
  border-radius: 12px;
  background: var(--soft);
}

.article-highlight strong {
  color: var(--ink);
}

.article-highlight span {
  color: var(--muted);
  font-weight: 760;
}

.article-highlight.warning {
  border-left-color: var(--amber);
  background: #fff7df;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.fact-grid article {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.fact-grid span {
  color: var(--muted);
  font-weight: 650;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}

.info-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.info-table th,
.info-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.info-table th {
  background: var(--soft);
  color: var(--ink);
  font-size: 14px;
}

.info-table td {
  color: var(--muted);
  font-weight: 650;
}

.source-note {
  font-size: 14px !important;
  color: #6b7280 !important;
}

.grounding-note {
  margin-top: 18px;
  margin-bottom: 8px;
  color: #5f6b7a;
  font-size: 14px;
  line-height: 1.55;
}

.grounding-note p {
  margin: 0;
  max-width: 980px;
}

.grounding-note a {
  color: var(--accent);
  font-weight: 850;
}

.related-topics {
  background: var(--soft);
}

.related-topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.related-topic-card {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: inherit;
  text-decoration: none;
}

.related-topic-card strong {
  color: var(--ink);
  overflow-wrap: anywhere;
}

.related-topic-card span {
  color: var(--muted);
  font-size: 14px;
  overflow-wrap: break-word;
}

.bu-page-hero {
  padding: 38px 0 26px;
  background: linear-gradient(180deg, #fffdf9 0%, #f4faf8 100%);
}

.bu-hero-panel {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: grid;
  align-items: center;
  padding: 58px;
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(0, 111, 115, 0.92) 0%, rgba(0, 140, 140, 0.78) 48%, rgba(0, 140, 140, 0.12) 100%),
    url("assets/hero-bu-ai.webp");
  background-position: center, 65% 18%;
  background-size: cover, cover;
  color: white;
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.16);
}

.renten-hero-panel {
  background:
    linear-gradient(90deg, rgba(8, 36, 95, 0.88) 0%, rgba(0, 140, 140, 0.62) 52%, rgba(0, 140, 140, 0.08) 100%),
    url("assets/hero-altersvorsorge-ai.webp");
  background-position: center, 58% 20%;
  background-size: cover, cover;
}

.riester-hero-panel {
  background:
    linear-gradient(90deg, rgba(8, 36, 95, 0.9) 0%, rgba(0, 140, 140, 0.58) 52%, rgba(0, 140, 140, 0.08) 100%),
    url("assets/hero-altersvorsorge-ai.webp");
  background-position: center, 56% 22%;
  background-size: cover, cover;
}

.pkv-hero-panel {
  background:
    linear-gradient(90deg, rgba(8, 36, 95, 0.9) 0%, rgba(0, 140, 140, 0.56) 54%, rgba(0, 140, 140, 0.08) 100%),
    url("assets/hero-pkv-ai.webp");
  background-position: center, 62% 16%;
  background-size: cover, cover;
}

.ordner-hero-panel {
  background:
    linear-gradient(90deg, rgba(8, 36, 95, 0.9) 0%, rgba(0, 140, 140, 0.54) 52%, rgba(0, 140, 140, 0.08) 100%),
    url("assets/hero-versicherungscheck-ai.webp");
  background-position: center, 58% 14%;
  background-size: cover, cover;
}

.bu-hero-copy {
  max-width: 690px;
}

.bu-hero-copy h1 {
  max-width: 720px;
  font-size: clamp(38px, 4.8vw, 62px);
  line-height: 0.98;
}

.bu-page-hero .eyebrow {
  color: #ffdf76;
}

.hero-subline {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 22px;
  font-weight: 700;
}

.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 13px;
  font-weight: 900;
}

.intro-check-section {
  padding-top: 58px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: 34px;
  align-items: center;
}

.faq-section .two-column {
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1fr);
  align-items: start;
}

.faq-section .section-heading,
.faq-section h2 {
  margin-bottom: 0;
}

.checklist-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  box-shadow: var(--shadow);
}

.checklist-panel ul,
.landing-note ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.question-grid,
.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.partner-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.question-card,
.reason-grid article,
.case-list article,
.partner-info-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.06);
}

.question-card span,
.case-list strong {
  color: var(--teal);
  font-weight: 950;
  font-size: 15px;
}

.question-card h3,
.reason-grid h3,
.case-list h3,
.partner-info-card h3 {
  margin: 10px 0 8px;
}

.question-card p,
.reason-grid p,
.case-list p,
.partner-info-card p {
  margin: 0;
  color: var(--muted);
}

.partner-info-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(0, 153, 153, 0.12);
  color: var(--teal-dark);
  font-weight: 950;
}

.process-timeline {
  position: relative;
  display: grid;
  gap: 26px;
  max-width: 980px;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 16px;
  bottom: 72px;
  width: 2px;
  background: var(--line);
}

.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  align-items: start;
}

.timeline-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: #0588b3;
  color: white;
  box-shadow: 0 12px 24px rgba(5, 136, 179, 0.22);
  font-size: 20px;
  font-weight: 950;
}

.timeline-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.06);
}

.timeline-card h3 {
  margin: 0 0 12px;
}

.timeline-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.timeline-cta {
  justify-self: start;
  margin-left: 68px;
}

.case-list {
  display: grid;
  gap: 12px;
}

.case-list article {
  display: grid;
  grid-template-columns: 90px 220px 1fr;
  align-items: center;
  gap: 16px;
}

.reason-panel {
  display: grid;
  gap: 24px;
  padding: 30px;
  border-radius: 18px;
  background: var(--soft);
  border: 1px solid rgba(0, 140, 140, 0.26);
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  overflow: hidden;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 58px;
  padding: 16px 20px;
  list-style: none;
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
  background: #f5f7f8;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "↓";
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "↑";
}

.faq-list p {
  margin: 0;
  color: var(--muted);
}

.faq-list details > p,
.faq-list details > div {
  padding: 18px 20px 20px;
}

.faq-list ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 650;
}

.faq-list div p + p {
  margin-top: 12px;
}

.faq-article-section h2 {
  margin-bottom: 26px;
}

@media (max-width: 1240px) {
  .thank-you-panel {
    grid-template-columns: minmax(0, 1fr) 220px;
    padding: 34px;
  }

  .thank-you-panel .appointment-trust-card {
    padding: 18px;
  }

  .thank-you-panel .appointment-trust-card h2 {
    font-size: 22px;
  }

  .thank-you-card {
    padding: 22px;
  }

  .thank-you-card h2 {
    font-size: 24px;
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .nav-toggle {
    display: inline-grid !important;
    position: fixed;
    top: 14px;
    right: 18px;
    z-index: 60;
    gap: 4px;
    justify-self: end;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 0;
    border-radius: 999px;
    background: var(--teal);
    box-shadow: 0 10px 24px rgba(0, 140, 140, 0.22);
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: white;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 6px;
  }

  .site-nav a,
  .nav-link {
    white-space: normal;
  }

  .site-nav.open {
    display: flex;
    max-height: calc(100vh - 86px);
    overflow-y: auto;
    margin-top: 52px;
    padding: 8px 0 14px;
    overscroll-behavior: contain;
  }

  .nav-social-links {
    display: flex;
    padding: 8px 12px 2px;
  }

  .nav-item {
    display: grid;
  }

  .nav-link {
    justify-content: space-between;
    width: 100%;
  }

  .nav-dropdown {
    display: none;
    position: static;
    width: 100%;
    margin: 4px 0 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    transition: none;
  }

  .nav-item.is-open .nav-dropdown {
    display: grid;
  }

  .nav-item:hover .nav-dropdown,
  .nav-item:focus-within .nav-dropdown {
    transform: none;
  }

  .nav-item:not(.is-open):hover .nav-dropdown,
  .nav-item:not(.is-open):focus-within .nav-dropdown {
    display: none;
  }

  .knowledge-nav {
    position: relative;
  }

  .knowledge-mega,
  .knowledge-nav:hover .knowledge-mega,
  .knowledge-nav:focus-within .knowledge-mega {
    width: 100%;
    transform: none;
  }

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

  .header-cta {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .hero-grid,
  .trust-layout,
  .appointment-hero-grid,
  .thank-you-panel,
  .cta-panel,
  .two-column,
  .knowledge-hero-grid,
  .article-hero-grid,
  .article-layout,
  .about-hero-grid,
  .theme-hero-grid {
    grid-template-columns: 1fr;
  }

  .faq-section .two-column {
    grid-template-columns: 1fr;
  }

  .knowledge-hero h1 {
    font-size: 42px;
    line-height: 1.06;
    text-wrap: wrap;
  }

  .article-hero h1 {
    font-size: 38px;
    line-height: 1.08;
    text-wrap: wrap;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .article-hero .lead {
    font-size: 18px;
  }

  .article-toc {
    position: static;
  }

  .hero {
    min-height: auto;
    padding-bottom: 92px;
  }

  .home-hero-v1 {
    min-height: auto;
    padding: 72px 0 112px;
  }

  .home-situation-strip {
    grid-template-columns: 1fr;
  }

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

  .home-question-inner {
    grid-template-columns: 1fr;
  }

  .kowadu-check-shell {
    grid-template-columns: 1fr;
  }

  .kowadu-flow-board {
    grid-template-columns: 1fr;
  }

  .kowadu-flow-map {
    min-height: 240px;
  }

  .kowadu-flow-stage .kowadu-check-card {
    min-height: 0;
  }

  .check-next-step-panel {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-console {
    margin-right: 0;
  }

  .carousel-arrow {
    top: auto;
    bottom: 24px;
    width: 46px;
    height: 46px;
    font-size: 38px;
    transform: none;
  }

  .carousel-arrow:hover,
  .carousel-arrow:focus-visible {
    transform: scale(1.03);
  }

  .quick-links,
  .advice-grid,
  .product-grid,
  .article-grid,
  .question-grid,
  .reason-grid,
  .partner-info-grid,
  .thank-you-card-grid,
  .knowledge-topic-grid,
  .related-topic-grid,
  .about-flow-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-list article {
    grid-template-columns: 1fr;
  }

  .about-principle-grid,
  .profession-grid,
  .theme-card-grid,
  .theme-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-hero {
    min-height: 0;
    padding: 86px 0;
  }

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

  .row-heading {
    display: block;
  }
}

@media (max-width: 800px) {
  .article-hero-grid {
    max-width: 390px;
    margin-inline: 0;
  }

  .article-hero-grid > * {
    max-width: 100%;
  }

  .article-hero h1,
  .article-hero .lead,
  .breadcrumbs {
    max-width: 362px;
  }

  .article-signal-card {
    justify-self: start;
    width: min(100%, 300px);
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .brand img {
    width: 190px;
  }

  .hero {
    padding-top: 58px;
  }

  .bu-hero-panel {
    width: 100%;
    min-width: 0;
    min-height: 0;
    padding: 34px 22px;
    border-radius: 16px;
    background:
      linear-gradient(90deg, rgba(0, 111, 115, 0.94) 0%, rgba(0, 140, 140, 0.84) 100%),
      url("assets/hero-bu-ai.webp");
    background-position: center, center 20%;
    background-size: cover, cover;
  }

  .renten-hero-panel {
    background:
      linear-gradient(90deg, rgba(8, 36, 95, 0.92) 0%, rgba(0, 140, 140, 0.82) 100%),
      url("assets/hero-altersvorsorge-ai.webp");
    background-position: center, center 22%;
    background-size: cover, cover;
  }

  .riester-hero-panel {
    background:
      linear-gradient(90deg, rgba(8, 36, 95, 0.92) 0%, rgba(0, 140, 140, 0.82) 100%),
      url("assets/hero-altersvorsorge-ai.webp");
    background-position: center, center 22%;
    background-size: cover, cover;
  }

  .pkv-hero-panel {
    background:
      linear-gradient(90deg, rgba(8, 36, 95, 0.92) 0%, rgba(0, 140, 140, 0.82) 100%),
      url("assets/hero-pkv-ai.webp");
    background-position: center, center 18%;
    background-size: cover, cover;
  }

  .ordner-hero-panel {
    background:
      linear-gradient(90deg, rgba(8, 36, 95, 0.92) 0%, rgba(0, 140, 140, 0.82) 100%),
      url("assets/hero-versicherungscheck-ai.webp");
    background-position: center, center 18%;
    background-size: cover, cover;
  }

  .bu-hero-copy h1 {
    font-size: clamp(30px, 8.2vw, 38px);
  }

  .bu-hero-copy,
  .bu-hero-copy h1,
  .hero-subline {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: break-word;
  }

  .hero-subline {
    font-size: 18px;
  }

  .hero h1 {
    font-size: clamp(30px, 8.6vw, 36px);
  }

  .kowadu-check-stage {
    padding: 54px 0 68px;
  }

  .kowadu-flow-map {
    min-height: 190px;
    padding: 18px;
  }

  .kowadu-flow-node {
    flex-basis: 148px;
    min-height: 94px;
    padding: 13px;
  }

  .kowadu-flow-connector {
    flex-basis: 26px;
  }

  .home-hero-v1 {
    padding: 54px 0 96px;
  }

  .home-hero-v1-inner {
    min-height: 430px;
  }

  .home-hero-v1 h1 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .home-hero-v1-lead {
    font-size: 18px;
  }

  .home-hero-v1-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .home-hero-v1-trust {
    width: 100%;
    border-radius: 8px;
  }

  .home-situation-strip {
    margin-top: -58px;
    margin-bottom: 42px;
    padding: 10px;
  }

  .home-situation-heading {
    padding: 14px 14px 12px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .home-situation-heading h2 {
    font-size: 24px;
  }

  .home-situation-grid {
    display: flex;
    gap: 10px;
    margin-inline: -10px;
    padding: 0 10px 8px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .home-situation-grid::-webkit-scrollbar {
    display: none;
  }

  .home-situation-card {
    flex: 0 0 176px;
    min-width: 176px;
    min-height: 136px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.035);
    scroll-snap-align: start;
  }

  .home-situation-icon {
    width: 17px;
    height: 17px;
  }

  .home-situation-card strong {
    font-size: 18px;
  }

  .home-pain-board {
    padding: 14px;
  }

  .home-pain-board-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .home-pain-board-head > p {
    max-width: 100%;
  }

  .home-pain-focus {
    grid-template-columns: 1fr;
  }

  .home-pain-slides {
    min-height: 264px;
  }

  .home-pain-slide {
    padding: 22px;
  }

  .home-pain-slide strong {
    font-size: 28px;
  }

  .home-pain-slide span:not(.home-pain-kicker) {
    font-size: 15px;
  }

  .home-pain-side {
    display: none;
  }

  .home-pain-dots {
    gap: 6px;
  }

  .home-pain-dot {
    width: 8px;
    height: 8px;
  }

  .home-question-stage {
    padding: 74px 0;
  }

  .home-v1 .home-question-stage {
    overflow-x: hidden;
  }

  .home-question-copy,
  .home-question-panel {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .home-question-copy h2 {
    max-width: calc(100vw - 28px);
    font-size: clamp(36px, 10vw, 48px);
    overflow-wrap: anywhere;
  }

  .home-question-copy p {
    max-width: calc(100vw - 28px);
    font-size: 18px;
    overflow-wrap: anywhere;
  }

  .home-question-panel {
    padding: 20px;
  }

  .home-question-panel p {
    font-size: 14px;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

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

  .kowadu-check-stage {
    padding: 72px 0;
  }

  .kowadu-check-copy h2 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .kowadu-check-copy p {
    font-size: 18px;
  }

  .kowadu-check-card {
    padding: 18px;
  }

  .kowadu-check-actions {
    display: grid;
  }

  .check-next-step-section {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .check-next-step-panel {
    padding: 18px;
  }

  .hero-console {
    grid-template-columns: 1fr;
    width: 100%;
    min-height: 0;
    border-radius: 18px;
    padding: 10px;
  }

  .hero-console .signal-card {
    display: none;
  }

  .hero-picker {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 6px;
  }

  .hero-picker button,
  .hero-picker select,
  .hero-picker label {
    grid-column: 1;
    grid-row: auto;
  }

  .carousel-prev {
    left: 14px;
  }

  .carousel-next {
    right: 14px;
  }

  .hero-actions,
  .product-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .chip {
    width: 100%;
  }

  .quick-links,
  .advice-grid,
  .product-grid,
  .article-grid,
  .question-grid,
  .reason-grid,
  .partner-info-grid,
  .knowledge-topic-grid,
  .related-topic-grid,
  .thank-you-card-grid,
  .about-flow-grid,
  .about-principle-grid,
  .profession-grid,
  .theme-card-grid,
  .theme-link-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .theme-media-hero {
    min-height: 0;
    padding: 28px;
  }

  .knowledge-hero {
    padding-top: 48px;
  }

  .knowledge-hero-grid {
    min-width: 0;
  }

  .knowledge-hero-grid > * {
    min-width: 0;
  }

  .knowledge-hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: 29px;
    line-height: 1.08;
    text-wrap: wrap;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .knowledge-hero .lead {
    width: 100%;
    max-width: 100%;
    font-size: 16px;
    line-height: 1.45;
    text-wrap: wrap;
    overflow-wrap: anywhere;
  }

  .knowledge-hero-card {
    min-width: 0;
    padding: 22px;
  }

  .knowledge-index {
    width: min(100% - 28px, 1120px);
    overflow-x: hidden;
  }

  .knowledge-category {
    padding: 38px 0;
  }

  .knowledge-category-head {
    min-height: 260px;
    padding: 24px;
  }

  .knowledge-category-head::before {
    background:
      linear-gradient(180deg, rgba(3, 13, 25, 0.78) 0%, rgba(3, 13, 25, 0.88) 100%),
      var(--category-image);
    background-position: center, var(--category-position, center 18%);
    background-size: cover, var(--category-size, cover);
    background-repeat: no-repeat;
  }

  .article-hero {
    padding: 42px 0 34px;
  }

  .article-hero h1 {
    font-size: 31px;
    line-height: 1.08;
    text-wrap: wrap;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .article-hero .lead,
  .article-section p {
    font-size: 16px;
  }

  .article-section {
    overflow: hidden;
    padding: 22px;
  }

  .article-check-list ul,
  .document-list,
  .mistake-list {
    padding-left: 16px;
  }

  .article-check-list li,
  .document-list li,
  .mistake-list li {
    overflow-wrap: anywhere;
  }

  .term-explain-grid,
  .josef-basics-grid,
  .self-check-grid,
  .document-explain-list,
  .mistake-explain-list {
    grid-template-columns: 1fr;
  }

  .article-cta-card,
  .article-cta-card > div {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    grid-template-columns: 1fr;
  }

  .article-cta-card {
    padding: 18px;
  }

  .article-cta-card .signal-k {
    grid-row: auto;
  }

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

  .process-timeline::before {
    display: none;
  }

  .timeline-step {
    grid-template-columns: 1fr;
  }

  .timeline-cta {
    justify-self: stretch;
    margin-left: 0;
  }

  .quick-links {
    margin-top: 18px;
  }

  .check-card {
    grid-template-columns: 1fr;
  }

  .check-card h3,
  .check-card p,
  .check-card a {
    grid-column: auto;
  }

  .check-card .line-icon {
    grid-row: auto;
  }

  .appointment-page,
  .appointment-hero {
    overflow-x: hidden;
  }

  .appointment-hero-grid,
  .appointment-hero-grid > * {
    min-width: 0;
  }

  .appointment-hero h1 {
    width: 100%;
    max-width: 330px;
    font-size: clamp(38px, 11vw, 46px);
    line-height: 0.98;
    overflow-wrap: anywhere;
  }

  .appointment-hero p:not(.eyebrow) {
    width: 100%;
    max-width: 330px;
    font-size: 17px;
    line-height: 1.55;
    overflow-wrap: anywhere;
  }

  .appointment-trust-card {
    width: 100%;
    max-width: 330px;
    min-width: 0;
  }

  .appointment-trust-card h2,
  .appointment-trust-card p,
  .appointment-check-context {
    overflow-wrap: anywhere;
  }

  .appointment-card {
    width: min(calc(100% - 28px), 820px);
    max-width: calc(100vw - 28px);
    margin-inline: 14px;
  }

  .appointment-step {
    padding: 24px;
  }

  .appointment-error {
    margin: 14px 24px 0;
  }

  .appointment-check-context {
    margin: 14px 14px 0;
  }

  .field-row,
  .appointment-actions {
    grid-template-columns: 1fr;
  }

  .appointment-actions button {
    text-align: center;
  }

  .thank-you-panel {
    padding: 28px;
  }
}

@media (max-width: 1080px) {
  body .site-header .nav-toggle {
    display: inline-grid !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: fixed !important;
    top: 14px !important;
    right: 14px !important;
    z-index: 999 !important;
    width: 42px !important;
    min-width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
    place-content: center !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #008c8c !important;
    box-shadow: 0 10px 24px rgba(0, 140, 140, 0.28) !important;
    pointer-events: auto !important;
  }

  body .site-header .nav-toggle span {
    display: none !important;
  }

  body .site-header .nav-toggle::before {
    content: "";
    display: block;
    width: 18px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    box-shadow: 0 -6px 0 #ffffff, 0 6px 0 #ffffff;
  }
}

@media (max-width: 620px) {
  body .site-header .nav-toggle {
    display: none !important;
  }

  body .site-header .header-actions {
    display: flex !important;
    position: fixed !important;
    top: 14px !important;
    right: 14px !important;
    left: auto !important;
    z-index: 999 !important;
    gap: 0 !important;
  }

  body .site-header .header-social-links {
    display: none !important;
  }

  body .site-header > .header-cta,
  body .site-header .header-actions .header-cta {
    display: inline-flex !important;
    position: static !important;
    width: 154px !important;
    height: 42px !important;
    min-height: 42px !important;
    max-width: 158px;
    padding: 0 14px !important;
    font-size: 14px !important;
    white-space: nowrap;
  }
}

@media (max-width: 360px) {
  body .site-header .brand img {
    width: 136px !important;
  }

  body .site-header .header-actions .header-cta {
    width: 128px !important;
    max-width: 128px;
    padding: 0 9px !important;
    font-size: 12.5px !important;
  }
}

@media (max-width: 620px) {
  html,
  body,
  .check-simple-page,
  .kowadu-check-stage {
    max-width: 100%;
    overflow-x: hidden;
  }

  body .site-header {
    width: 100%;
    min-width: 0;
    padding-inline: 14px;
  }

  body .site-header .brand img {
    width: 146px !important;
  }

  body .site-header .header-actions {
    right: 10px !important;
    max-width: calc(100vw - 172px);
  }

  body .site-header .header-actions .header-cta {
    width: min(132px, calc(100vw - 182px)) !important;
    max-width: 132px !important;
    padding: 0 8px !important;
    font-size: 12.5px !important;
    white-space: nowrap;
    overflow: hidden;
  }

  .kowadu-flow-intro,
  .kowadu-flow-intro .kowadu-check-copy,
  .kowadu-flow-board,
  .kowadu-flow-map,
  .kowadu-check-card {
    max-width: 100%;
    min-width: 0;
  }

  .kowadu-flow-intro .kowadu-check-copy h2 {
    max-width: 340px;
    overflow-wrap: anywhere;
  }

  .kowadu-check-note {
    width: 100%;
    max-width: 100%;
    line-height: 1.35;
    white-space: normal;
  }

  .kowadu-flow-canvas {
    min-width: 860px;
  }
}

@media (max-width: 360px) {
  body .site-header .brand img {
    width: 134px !important;
  }

  body .site-header .header-actions {
    max-width: calc(100vw - 156px);
  }

  body .site-header .header-actions .header-cta {
    width: min(124px, calc(100vw - 166px)) !important;
    max-width: 124px !important;
    font-size: 12px !important;
  }
}

@media (max-width: 620px) {
  body .site-header .header-actions {
    left: calc(100vw - 142px) !important;
    right: auto !important;
    width: 132px !important;
    max-width: 132px !important;
  }

  body .site-header .header-actions .header-cta {
    width: 132px !important;
    max-width: 132px !important;
  }

  .kowadu-flow-stage .container,
  .check-simple-page .bu-hero-panel.container {
    width: calc(100vw - 28px) !important;
    max-width: calc(100vw - 28px) !important;
    min-width: 0 !important;
  }

  .kowadu-flow-map,
  .kowadu-check-card {
    width: calc(100vw - 28px) !important;
    max-width: calc(100vw - 28px) !important;
    min-width: 0 !important;
  }

  .kowadu-check-card {
    padding: 18px !important;
  }

  .kowadu-check-card h3,
  .kowadu-check-card p,
  .kowadu-check-options,
  .kowadu-check-actions,
  .kowadu-check-mini-header,
  .kowadu-check-term,
  .kowadu-check-aha,
  .kowadu-check-note {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    white-space: normal !important;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 360px) {
  body .site-header .header-actions {
    left: calc(100vw - 132px) !important;
    width: 124px !important;
    max-width: 124px !important;
  }

  body .site-header .header-actions .header-cta {
    width: 124px !important;
    max-width: 124px !important;
  }
}

@media (max-width: 620px) {
  body .site-header {
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    overflow: hidden !important;
  }

  body .site-header .header-actions {
    position: static !important;
    grid-column: 2 !important;
    justify-self: end !important;
    left: auto !important;
    right: auto !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    transform: none !important;
  }

  body .site-header .header-actions .header-cta {
    justify-content: center !important;
    width: 42px !important;
    max-width: 42px !important;
    min-width: 42px !important;
    padding: 0 !important;
    border-radius: 999px !important;
    font-size: 0 !important;
    overflow: hidden !important;
  }

  body .site-header > .header-cta .btn-icon,
  body .site-header .header-actions .header-cta .btn-icon {
    width: 22px !important;
    height: 22px !important;
    margin: 0 !important;
    font-size: 18px !important;
  }
}

@media (max-width: 620px) {
  body .site-header {
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    overflow: hidden !important;
  }

  body .site-header .header-actions {
    position: static !important;
    grid-column: 2 !important;
    justify-self: end !important;
    left: auto !important;
    right: auto !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    transform: none !important;
  }

  body .site-header > .header-cta,
  body .site-header .header-actions .header-cta {
    justify-content: center !important;
    width: 42px !important;
    max-width: 42px !important;
    min-width: 42px !important;
    padding: 0 !important;
    border-radius: 999px !important;
    font-size: 0 !important;
    overflow: hidden !important;
  }

  body .site-header .header-actions .header-cta .btn-icon {
    width: 22px !important;
    height: 22px !important;
    margin: 0 !important;
    font-size: 18px !important;
  }
}

@media (max-width: 360px) {
  body .site-header .header-actions .header-cta {
    width: 42px !important;
    max-width: 42px !important;
    min-width: 42px !important;
  }
}

@media (max-width: 620px) {
  body .site-header {
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    overflow: hidden !important;
  }

  body .site-header .header-actions {
    position: static !important;
    grid-column: 2 !important;
    justify-self: end !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    transform: none !important;
  }

  body .site-header .header-actions .header-cta {
    width: min(132px, calc(100vw - 182px)) !important;
    max-width: 132px !important;
    min-width: 0 !important;
    padding: 0 8px !important;
    overflow: hidden !important;
  }
}

@media (max-width: 360px) {
  body .site-header .header-actions .header-cta {
    width: min(116px, calc(100vw - 162px)) !important;
    max-width: 116px !important;
    font-size: 11.5px !important;
  }
}

/* Kowadu header CTA responsive normalization 20260606d */
body .site-header .header-actions {
  flex-shrink: 0;
}

body .site-header .header-actions .header-cta {
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
  overflow-wrap: normal !important;
  word-break: keep-all !important;
}

body .site-header .header-actions .header-cta .btn-icon {
  flex-shrink: 0;
}

@media (max-width: 1240px) and (min-width: 1081px) {
  body .site-header {
    grid-template-columns: minmax(150px, 210px) minmax(0, 1fr) 154px;
    gap: 14px;
  }

  body .site-header .header-actions {
    width: 154px;
    min-width: 154px;
    max-width: 154px;
    justify-content: flex-end;
    gap: 0;
  }

  body .site-header .header-social-links {
    display: none !important;
  }

  body .site-header .header-actions .header-cta {
    width: 154px;
    min-width: 154px;
    max-width: 154px;
    height: 42px;
    min-height: 42px;
    padding: 0 12px;
    gap: 7px;
    font-size: 14px;
    line-height: 1;
  }

  body .site-header .header-actions .header-cta .btn-icon {
    width: 21px;
    height: 21px;
    font-size: 16px;
  }
}

@media (max-width: 1080px) and (min-width: 621px) {
  body .site-header .header-actions {
    width: 154px !important;
    min-width: 154px !important;
    max-width: 154px !important;
  }

  body .site-header .header-actions .header-cta {
    width: 154px !important;
    min-width: 154px !important;
    max-width: 154px !important;
    white-space: nowrap !important;
  }
}

/* Final mobile header override 20260605n */
@media (max-width: 620px) {
  body .site-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    min-height: 64px !important;
    padding: 10px 14px !important;
    gap: 8px !important;
    overflow: visible !important;
  }

  body .site-header .brand {
    flex: 0 1 126px !important;
    width: 126px !important;
    max-width: 34vw !important;
    min-width: 0 !important;
  }

  body .site-header .brand img {
    width: min(122px, 34vw) !important;
    max-width: 122px !important;
  }

  body .site-header .site-nav,
  body .site-header .nav-toggle,
  body .site-header .header-social-links {
    display: none !important;
  }

  body .site-header .header-actions {
    display: flex !important;
    position: static !important;
    flex: 0 0 auto !important;
    justify-content: flex-end !important;
    align-items: center !important;
    margin-left: auto !important;
    width: auto !important;
    max-width: calc(100vw - 156px) !important;
    min-width: 0 !important;
    transform: none !important;
  }

  body .site-header > .header-cta,
  body .site-header .header-actions .header-cta {
    flex: 0 0 124px !important;
    width: 124px !important;
    max-width: 124px !important;
    min-width: 116px !important;
    height: 42px !important;
    min-height: 42px !important;
    padding: 0 8px !important;
    gap: 5px !important;
    justify-content: center !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    font-size: 12.5px !important;
    line-height: 1 !important;
  }

  body .site-header > .header-cta .btn-icon,
  body .site-header .header-actions .header-cta .btn-icon {
    flex: 0 0 20px !important;
    width: 20px !important;
    height: 20px !important;
    margin: 0 !important;
    font-size: 15px !important;
  }
}

@media (max-width: 380px) {
  body .site-header .brand {
    flex-basis: 110px !important;
    width: 110px !important;
  }

  body .site-header .brand img {
    width: min(108px, 33vw) !important;
  }

  body .site-header .header-actions {
    max-width: calc(100vw - 132px) !important;
  }

  body .site-header > .header-cta,
  body .site-header .header-actions .header-cta {
    flex-basis: 112px !important;
    width: 112px !important;
    max-width: 112px !important;
    min-width: 104px !important;
    padding: 0 7px !important;
    font-size: 11px !important;
  }
}

/* Absolute mobile CTA pin 20260605o */
@media (max-width: 620px) {
  body .site-header > .header-cta,
  body .site-header .header-actions {
    position: absolute !important;
    top: 50% !important;
    right: 14px !important;
    left: auto !important;
    transform: translateY(-50%) !important;
    margin-left: 0 !important;
  }
}

@media (max-width: 380px) {
  body .site-header > .header-cta,
  body .site-header .header-actions {
    right: 10px !important;
  }
}

/* Kowadu conversion polish 20260605i */
@media (max-width: 620px) {
  body .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    gap: 10px !important;
    min-height: 64px;
    overflow: hidden !important;
  }

  body .site-header .brand {
    grid-column: 1 !important;
    min-width: 0 !important;
    max-width: 150px !important;
  }

  body .site-header .brand img {
    width: 146px !important;
  }

  body .site-header .header-actions {
    display: flex !important;
    position: static !important;
    grid-column: 3 !important;
    justify-self: end !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    transform: none !important;
  }

  body .site-header .header-actions .header-cta {
    width: auto !important;
    min-width: 132px !important;
    max-width: 142px !important;
    height: 42px !important;
    min-height: 42px !important;
    padding: 0 10px !important;
    gap: 6px !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, #0084ff, #083a9f) !important;
    color: white !important;
    font-size: 13px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    box-shadow: 0 14px 30px rgba(0, 92, 190, 0.24) !important;
  }

  body .site-header .header-actions .header-cta .btn-icon {
    width: 20px !important;
    height: 20px !important;
    margin: 0 !important;
    font-size: 15px !important;
  }

  .home-pain-board {
    padding: 12px;
  }

  .home-pain-board-head {
    margin-bottom: 10px;
  }

  .home-pain-board-head h3 {
    font-size: 27px;
  }

  .home-pain-slides {
    min-height: 226px;
  }

  .home-pain-slide {
    padding: 19px 18px;
    gap: 10px;
  }

  .home-pain-slide strong {
    font-size: 27px;
    line-height: 1.02;
  }

  .home-pain-controls {
    margin-top: 10px;
  }

  .knowledge-hero {
    padding: 64px 0 40px;
  }

  .knowledge-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }
}

@media (max-width: 360px) {
  body .site-header .brand {
    max-width: 132px !important;
  }

  body .site-header .brand img {
    width: 132px !important;
  }

  body .site-header .header-actions .header-cta {
    min-width: 112px !important;
    max-width: 120px !important;
    padding: 0 8px !important;
    font-size: 11.5px !important;
  }
}

.kowadu-check-focus {
  padding: clamp(72px, 9vw, 128px) 0;
  background:
    linear-gradient(rgba(124, 231, 255, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 231, 255, 0.038) 1px, transparent 1px),
    linear-gradient(180deg, #041528 0%, #071f3a 58%, #061326 100%);
  background-size: 76px 76px, 76px 76px, auto;
}

.kowadu-check-focus::before {
  opacity: 0.5;
}

.kowadu-check-focus .kowadu-flow-intro,
.kowadu-check-focus .kowadu-flow-prompts,
.kowadu-check-focus .kowadu-check-note,
.kowadu-check-focus .kowadu-flow-map,
.kowadu-check-focus .kowadu-check-mini-header,
.kowadu-check-focus .kowadu-check-progress,
.kowadu-check-focus .kowadu-check-path,
.kowadu-check-focus [data-check-kicker] {
  display: none !important;
}

.kowadu-check-focus .kowadu-flow-board {
  display: grid;
  place-items: center;
  min-height: 0;
}

.kowadu-check-focus .kowadu-check-card {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  width: min(100%, 920px) !important;
  min-height: 620px;
  transform: none !important;
  padding: clamp(26px, 4.8vw, 56px) !important;
  border-color: rgba(124, 231, 255, 0.28);
  background:
    linear-gradient(135deg, rgba(10, 43, 76, 0.98), rgba(4, 20, 38, 0.98) 62%, rgba(5, 33, 58, 0.98));
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.kowadu-check-focus .kowadu-check-card .eyebrow {
  color: #7ce7ff;
  font-size: 13px;
}

.kowadu-check-focus .kowadu-check-card h3 {
  width: 100% !important;
  max-width: 820px !important;
  margin-top: 12px;
  font-size: clamp(44px, 5.4vw, 72px);
  line-height: 0.98;
}

.kowadu-check-focus .kowadu-check-card p[data-check-reason] {
  width: 100% !important;
  max-width: 660px !important;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
}

.kowadu-check-focus .kowadu-check-options {
  width: 100% !important;
  max-width: 820px !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.kowadu-check-focus .kowadu-check-option {
  min-height: 76px;
  padding: 20px 22px;
  font-size: 18px;
}

.kowadu-check-focus .kowadu-check-term {
  width: 100%;
  max-width: 820px;
  margin-top: 20px;
}

.kowadu-check-focus .kowadu-check-term p {
  width: 100% !important;
  max-width: 620px !important;
}

.kowadu-check-focus .kowadu-check-aha {
  width: 100% !important;
  max-width: 820px !important;
  margin-top: 30px;
}

.kowadu-score-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 22px;
  border: 1px solid rgba(124, 231, 255, 0.24);
  border-left: 4px solid #7ce7ff;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.kowadu-score-card > div > span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.kowadu-score-card > div > strong {
  display: block;
  color: white;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.05;
}

.kowadu-score-card p {
  width: 100% !important;
  max-width: 520px !important;
  margin: 8px 0 0;
}

.kowadu-open-points {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid rgba(124, 231, 255, 0.18);
  border-radius: 8px;
  background: rgba(4, 20, 38, 0.64);
}

.kowadu-open-points > strong {
  display: block;
  color: #7ce7ff;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.kowadu-open-points ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.kowadu-open-points li {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.45;
}

.kowadu-open-points li::before {
  content: ">";
  margin-right: 8px;
  color: #7ce7ff;
  font-weight: 950;
}

.kowadu-check-focus .kowadu-check-aha small {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.56);
  line-height: 1.45;
}

.kowadu-check-focus .kowadu-check-actions {
  width: 100% !important;
  max-width: 820px !important;
  margin-top: 28px;
}

@media (max-width: 720px) {
  .kowadu-check-focus {
    padding: 54px 0 68px;
  }

  .kowadu-check-focus .kowadu-check-card {
    min-height: 0;
    padding: 22px !important;
  }

  .kowadu-check-focus .kowadu-check-card h3 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .kowadu-check-focus .kowadu-check-card p[data-check-reason] {
    font-size: 17px;
  }

  .kowadu-check-focus .kowadu-check-options {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .kowadu-check-focus .kowadu-check-option {
    min-height: 62px;
    padding: 16px 18px;
    font-size: 16px;
  }

  .kowadu-score-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }

}

@media (max-width: 620px) {
  html,
  body,
  .check-simple-page,
  .kowadu-check-stage {
    max-width: 100%;
    overflow-x: hidden;
  }

  body .site-header {
    width: 100%;
    min-width: 0;
    padding-inline: 14px;
  }

  body .site-header .brand img {
    width: 146px !important;
  }

  body .site-header .header-actions {
    right: 10px !important;
    max-width: calc(100vw - 172px);
  }

  body .site-header .header-actions .header-cta {
    width: min(132px, calc(100vw - 182px)) !important;
    max-width: 132px !important;
    padding: 0 8px !important;
    font-size: 12.5px !important;
    white-space: nowrap;
    overflow: hidden;
  }

  .kowadu-flow-intro,
  .kowadu-flow-intro .kowadu-check-copy,
  .kowadu-flow-board,
  .kowadu-flow-map,
  .kowadu-check-card {
    max-width: 100%;
    min-width: 0;
  }

  .kowadu-flow-intro .kowadu-check-copy h2 {
    max-width: 340px;
    overflow-wrap: anywhere;
  }

  .kowadu-check-note {
    width: 100%;
    max-width: 100%;
    line-height: 1.35;
    white-space: normal;
  }

  .kowadu-flow-canvas {
    min-width: 860px;
  }
}

@media (max-width: 360px) {
  body .site-header .brand img {
    width: 134px !important;
  }

  body .site-header .header-actions {
    max-width: calc(100vw - 156px);
  }

  body .site-header .header-actions .header-cta {
    width: min(124px, calc(100vw - 166px)) !important;
    max-width: 124px !important;
    font-size: 12px !important;
  }
}

@media (max-width: 1180px) {
  .kowadu-flow-board {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 0;
  }

  .kowadu-check-card {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    transform: none;
  }

  .kowadu-flow-stage .kowadu-check-card {
    min-height: 0;
  }

  .kowadu-flow-map {
    min-height: 720px;
  }
}

@media (max-width: 980px) {
  .kowadu-flow-stage .container {
    width: min(100% - 32px, 760px);
  }

  .kowadu-flow-intro {
    display: block;
  }

  .kowadu-flow-prompts {
    justify-content: flex-start;
    margin-top: 18px;
  }

  .kowadu-flow-board {
    grid-template-columns: 1fr;
  }

  .kowadu-flow-stage .kowadu-check-card {
    order: -1;
    min-height: 0;
  }

  .kowadu-flow-map {
    min-height: 720px;
  }
}

@media (max-width: 620px) {
  .check-simple-page {
    overflow-x: hidden;
  }

  .kowadu-flow-stage .container {
    width: min(100% - 28px, 1120px);
  }

  .home-hero-v1 h1 {
    max-width: 310px;
    font-size: clamp(34px, 9vw, 38px);
  }

  .home-hero-v1-lead {
    max-width: 300px;
    font-size: 17px;
    overflow-wrap: anywhere;
  }

  .home-hero-v1 .btn {
    width: 100%;
    max-width: 330px;
    white-space: normal;
  }

  .home-hero-v1-trust {
    width: 100%;
    max-width: 300px;
    border-radius: 8px;
    overflow-wrap: anywhere;
  }

  .home-situation-strip {
    width: min(100% - 28px, 1120px);
    margin-inline: auto;
  }

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

  .home-situation-card {
    min-height: 112px;
    padding: 14px;
  }

  .home-situation-card strong {
    font-size: 16px;
  }

  .check-simple-page .bu-hero-panel.container {
    width: min(100% - 28px, 1120px);
    margin-inline: auto;
  }

  .check-simple-page .bu-hero-copy {
    max-width: min(100%, 300px);
  }

  .check-simple-page .bu-hero-copy h1 {
    font-size: clamp(30px, 7.6vw, 36px);
    max-width: 300px;
  }

  .check-simple-page .hero-subline {
    max-width: 285px;
    font-size: 17px;
    line-height: 1.45;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .check-simple-page .hero-proof-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .check-simple-page .hero-proof-row span {
    justify-content: center;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    white-space: normal;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .kowadu-flow-intro .kowadu-check-copy h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .kowadu-flow-intro .kowadu-check-copy p[data-check-text] {
    max-width: 310px;
    font-size: 18px;
    overflow-wrap: anywhere;
  }

  .kowadu-check-card,
  .kowadu-check-card h3,
  .kowadu-check-card p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .kowadu-flow-board,
  .kowadu-check-card {
    width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .kowadu-check-card h3,
  .kowadu-check-card p,
  .kowadu-check-options,
  .kowadu-check-actions {
    width: min(100%, calc(100vw - 68px));
    max-width: min(100%, calc(100vw - 68px));
  }

  .kowadu-check-card p {
    max-width: 100%;
  }

  .kowadu-check-option {
    min-width: 0;
    white-space: normal;
  }

  .kowadu-flow-map {
    min-height: 720px;
  }

  .kowadu-flow-map::after {
    right: 18px;
    left: 18px;
    bottom: 18px;
    max-width: none;
    font-size: 12px;
  }

  .kowadu-check-note {
    width: 100%;
    max-width: 270px;
    border-radius: 8px;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .about-hero {
    overflow: hidden;
    padding: 70px 0 54px;
  }

  .about-hero-grid,
  .about-hero-grid > * {
    min-width: 0;
  }

  .about-hero h1 {
    max-width: 330px;
    font-size: clamp(42px, 12vw, 52px);
    line-height: 0.96;
    overflow-wrap: anywhere;
  }

  .about-hero .lead {
    max-width: 330px;
    font-size: 17px;
    line-height: 1.48;
    overflow-wrap: anywhere;
  }

  .about-focus-panel {
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .about-focus-panel h2,
  .about-focus-panel p,
  .about-mini-list span {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .about-focus-panel h2 {
    max-width: 280px;
    font-size: clamp(28px, 8.4vw, 34px);
  }

  .about-focus-panel p:not(.eyebrow) {
    max-width: 280px;
  }

  .about-trust-section .section-heading h2 {
    max-width: 330px;
    font-size: clamp(30px, 8.4vw, 38px);
    overflow-wrap: anywhere;
  }

  .thank-you-panel,
  .thank-you-panel > *,
  .thank-you-card {
    min-width: 0;
  }

  .thank-you-panel h1 {
    max-width: 300px;
    font-size: clamp(36px, 10vw, 44px);
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .thank-you-panel p,
  .thank-you-card p,
  .thank-you-panel .appointment-trust-card p {
    max-width: 300px;
    overflow-wrap: anywhere;
  }

  .thank-you-panel .appointment-trust-card {
    width: 100%;
    max-width: 300px;
    justify-self: start;
    overflow: hidden;
  }

  .thank-you-panel .appointment-trust-card h2 {
    max-width: 220px;
    font-size: 24px;
    overflow-wrap: anywhere;
  }

  .thank-you-panel .appointment-trust-card p {
    max-width: 230px;
  }
}

@media (max-width: 1080px) {
  body .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  body .site-header .nav-toggle {
    display: none !important;
  }

  body .site-header .header-actions {
    display: flex !important;
    position: fixed !important;
    top: 14px !important;
    right: 14px !important;
    left: auto !important;
    z-index: 999 !important;
    gap: 0 !important;
  }

  body .site-header .header-social-links {
    display: none !important;
  }

  body .site-header .header-actions .header-cta {
    display: inline-flex !important;
    position: static !important;
    width: 154px !important;
    height: 42px !important;
    min-height: 42px !important;
    max-width: 164px;
    padding: 0 14px !important;
    font-size: 14px !important;
    white-space: nowrap;
  }
}

@media (max-width: 360px) {
  body .site-header .brand img {
    width: 136px !important;
  }

  body .site-header .header-actions .header-cta {
    width: 128px !important;
    max-width: 128px;
    padding: 0 9px !important;
    font-size: 12.5px !important;
  }
}

@media (max-width: 620px) {
  html,
  body,
  .check-simple-page,
  .kowadu-check-stage {
    max-width: 100%;
    overflow-x: hidden;
  }

  body .site-header {
    width: 100%;
    min-width: 0;
    padding-inline: 14px;
  }

  body .site-header .brand img {
    width: 146px !important;
  }

  body .site-header .header-actions {
    right: 10px !important;
    max-width: calc(100vw - 172px);
  }

  body .site-header .header-actions .header-cta {
    width: min(132px, calc(100vw - 182px)) !important;
    max-width: 132px !important;
    padding: 0 8px !important;
    font-size: 12.5px !important;
    white-space: nowrap;
    overflow: hidden;
  }

  .kowadu-flow-intro,
  .kowadu-flow-intro .kowadu-check-copy,
  .kowadu-flow-board,
  .kowadu-flow-map,
  .kowadu-check-card {
    max-width: 100%;
    min-width: 0;
  }

  .kowadu-flow-intro .kowadu-check-copy h2 {
    max-width: 340px;
    overflow-wrap: anywhere;
  }

  .kowadu-check-note {
    width: 100%;
    max-width: 100%;
    line-height: 1.35;
    white-space: normal;
  }

  .kowadu-flow-canvas {
    min-width: 860px;
  }
}

@media (max-width: 360px) {
  body .site-header .brand img {
    width: 134px !important;
  }

  body .site-header .header-actions {
    max-width: calc(100vw - 156px);
  }

  body .site-header .header-actions .header-cta {
    width: min(124px, calc(100vw - 166px)) !important;
    max-width: 124px !important;
    font-size: 12px !important;
  }
}
@media (max-width: 620px) {
  body .site-header .header-actions {
    left: calc(100vw - 142px) !important;
    right: auto !important;
    width: 132px !important;
    max-width: 132px !important;
  }

  body .site-header .header-actions .header-cta {
    width: 132px !important;
    max-width: 132px !important;
  }

  .kowadu-flow-stage .container,
  .check-simple-page .bu-hero-panel.container {
    width: calc(100vw - 28px) !important;
    max-width: calc(100vw - 28px) !important;
    min-width: 0 !important;
  }

  .kowadu-flow-map,
  .kowadu-check-card {
    width: calc(100vw - 28px) !important;
    max-width: calc(100vw - 28px) !important;
    min-width: 0 !important;
  }

  .kowadu-check-card {
    padding: 18px !important;
  }

  .kowadu-check-card h3,
  .kowadu-check-card p,
  .kowadu-check-options,
  .kowadu-check-actions,
  .kowadu-check-mini-header,
  .kowadu-check-term,
  .kowadu-check-aha,
  .kowadu-check-note {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    white-space: normal !important;
    overflow-wrap: anywhere;
  }
}

/* Kowadu mobile CTA hardening 20260605k */
@media (max-width: 620px) {
  body .site-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    min-height: 64px !important;
    padding: 10px 14px !important;
    gap: 8px !important;
    overflow: visible !important;
  }

  body .site-header .brand {
    flex: 0 1 126px !important;
    width: 126px !important;
    max-width: 34vw !important;
    min-width: 0 !important;
  }

  body .site-header .brand img {
    width: min(122px, 34vw) !important;
    max-width: 122px !important;
  }

  body .site-header .site-nav,
  body .site-header .nav-toggle,
  body .site-header .header-social-links {
    display: none !important;
  }

  body .site-header .header-actions {
    display: flex !important;
    position: static !important;
    flex: 0 0 auto !important;
    justify-content: flex-end !important;
    align-items: center !important;
    margin-left: auto !important;
    width: auto !important;
    max-width: calc(100vw - 156px) !important;
    min-width: 0 !important;
    transform: none !important;
  }

  body .site-header .header-actions .header-cta {
    flex: 0 0 124px !important;
    width: 124px !important;
    max-width: 124px !important;
    min-width: 116px !important;
    height: 42px !important;
    min-height: 42px !important;
    padding: 0 8px !important;
    gap: 5px !important;
    justify-content: center !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    font-size: 12.5px !important;
    line-height: 1 !important;
  }

  body .site-header .header-actions .header-cta .btn-icon {
    flex: 0 0 20px !important;
    width: 20px !important;
    height: 20px !important;
    margin: 0 !important;
    font-size: 15px !important;
  }
}

@media (max-width: 380px) {
  body .site-header .brand {
    flex-basis: 110px !important;
    width: 110px !important;
  }

  body .site-header .brand img {
    width: min(108px, 33vw) !important;
  }

  body .site-header .header-actions {
    max-width: calc(100vw - 132px) !important;
  }

  body .site-header .header-actions .header-cta {
    flex-basis: 112px !important;
    width: 112px !important;
    max-width: 112px !important;
    min-width: 104px !important;
    padding: 0 7px !important;
    font-size: 11px !important;
  }
}

@media (max-width: 360px) {
  body .site-header .header-actions {
    left: calc(100vw - 132px) !important;
    width: 124px !important;
    max-width: 124px !important;
  }

  body .site-header .header-actions .header-cta {
    width: 124px !important;
    max-width: 124px !important;
  }
}

@media (max-width: 620px) {
  body .site-header {
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    overflow: hidden !important;
  }

  body .site-header .header-actions {
    position: static !important;
    grid-column: 2 !important;
    justify-self: end !important;
    left: auto !important;
    right: auto !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    transform: none !important;
  }

  body .site-header .header-actions .header-cta {
    width: min(132px, calc(100vw - 182px)) !important;
    max-width: 132px !important;
    min-width: 0 !important;
    padding: 0 8px !important;
    overflow: hidden !important;
  }
}

@media (max-width: 360px) {
  body .site-header .header-actions .header-cta {
    width: min(116px, calc(100vw - 162px)) !important;
    max-width: 116px !important;
    font-size: 11.5px !important;
  }
}

/* Final guard: keep the Online-Treff header CTA stable across resized Codex/browser widths. */
body .site-header .header-actions .header-cta {
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
  overflow-wrap: normal !important;
  word-break: keep-all !important;
}

body .site-header .header-actions .header-cta .btn-icon {
  flex-shrink: 0;
}

@media (max-width: 1240px) and (min-width: 621px) {
  body .site-header .header-actions {
    flex: 0 0 154px !important;
    width: 154px !important;
    min-width: 154px !important;
    max-width: 154px !important;
    justify-content: flex-end !important;
    gap: 0 !important;
  }

  body .site-header .header-social-links {
    display: none !important;
  }

  body .site-header .header-actions .header-cta {
    width: 154px !important;
    min-width: 154px !important;
    max-width: 154px !important;
    height: 42px !important;
    min-height: 42px !important;
    padding: 0 12px !important;
    gap: 7px !important;
    font-size: 14px !important;
    line-height: 1 !important;
  }

  body .site-header .header-actions .header-cta .btn-icon {
    width: 21px !important;
    height: 21px !important;
    font-size: 16px !important;
  }
}

@media (max-width: 620px) {
  body .site-header .header-actions {
    flex: 0 0 124px !important;
    width: 124px !important;
    min-width: 124px !important;
    max-width: 124px !important;
    justify-content: flex-end !important;
  }

  body .site-header .header-actions .header-cta {
    width: 124px !important;
    min-width: 116px !important;
    max-width: 124px !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 380px) {
  body .site-header .header-actions {
    flex-basis: 112px !important;
    width: 112px !important;
    min-width: 112px !important;
    max-width: 112px !important;
  }

  body .site-header .header-actions .header-cta {
    width: 112px !important;
    min-width: 104px !important;
    max-width: 112px !important;
    padding: 0 7px !important;
    font-size: 11px !important;
  }
}

/* Final guard: keep the homepage situation and pain panel inside tiny mobile viewports. */
@media (max-width: 380px) {
  #situation-check.home-situation-strip {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: calc(100vw - 28px) !important;
    max-width: calc(100vw - 28px) !important;
    min-width: 0 !important;
    margin-inline: auto !important;
    padding: 10px !important;
    overflow: hidden !important;
  }

  #situation-check .home-situation-heading,
  #situation-check .home-situation-grid,
  #situation-check .home-situation-card,
  #situation-check .home-pain-board,
  #situation-check .home-pain-board-head,
  #situation-check .home-pain-focus,
  #situation-check .home-pain-slides,
  #situation-check .home-pain-slide,
  #situation-check .home-pain-controls {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  #situation-check .home-situation-heading {
    padding: 12px 12px 10px !important;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
  }

  #situation-check .home-situation-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 8px !important;
    margin-inline: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    scroll-snap-type: none !important;
  }

  #situation-check .home-situation-card {
    flex: none !important;
    min-height: 104px !important;
    padding: 13px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 7px !important;
  }

  #situation-check .home-situation-card strong,
  #situation-check .home-pain-board-head h3,
  #situation-check .home-pain-slide strong,
  #situation-check .home-pain-slide span:not(.home-pain-kicker),
  #situation-check .home-pain-slide em {
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
  }

  #situation-check .home-pain-board {
    padding: 12px !important;
    overflow: hidden !important;
  }

  #situation-check .home-pain-board-head {
    display: grid !important;
    gap: 8px !important;
  }

  #situation-check .home-pain-slides {
    min-height: 258px !important;
    overflow: hidden !important;
  }

  #situation-check .home-pain-slide {
    padding: 18px !important;
    transform: translateX(0) !important;
  }

  #situation-check .home-pain-slide:not(.is-active) {
    transform: translateX(0) !important;
  }

  #situation-check .home-pain-controls {
    display: grid !important;
    grid-template-columns: 34px minmax(42px, auto) minmax(0, 1fr) 34px !important;
    gap: 8px !important;
    align-items: center !important;
  }

  #situation-check .home-pain-arrow {
    width: 34px !important;
    min-width: 34px !important;
    height: 34px !important;
  }

  #situation-check .home-pain-dots {
    justify-content: flex-start !important;
    gap: 3px !important;
    overflow: hidden !important;
  }

  #situation-check .home-pain-dot {
    flex: 0 0 5px !important;
    width: 5px !important;
    min-width: 5px !important;
    max-width: 5px !important;
    height: 5px !important;
    min-height: 5px !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  #situation-check .home-pain-dot.is-active {
    flex-basis: 16px !important;
    width: 16px !important;
    min-width: 16px !important;
    max-width: 16px !important;
  }
}

/* Final guard: restore a compact mobile menu without weakening the Online-Treff CTA. */
@media (max-width: 1080px) {
  body .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto !important;
    overflow: visible !important;
  }

  body .site-header .brand {
    grid-column: 1 !important;
    justify-self: start !important;
  }

  body .site-header .nav-toggle {
    display: inline-grid !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: fixed !important;
    top: 14px !important;
    right: 176px !important;
    z-index: 1000 !important;
    width: 40px !important;
    min-width: 40px !important;
    height: 40px !important;
    min-height: 40px !important;
    place-content: center !important;
    padding: 0 !important;
    border: 1px solid rgba(0, 118, 255, 0.18) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.92) !important;
    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.14) !important;
    backdrop-filter: blur(14px) !important;
    pointer-events: auto !important;
  }

  body .site-header .nav-toggle span {
    display: none !important;
  }

  body .site-header .nav-toggle::before {
    content: "";
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: #083a9f;
    box-shadow: 0 -6px 0 #083a9f, 0 6px 0 #083a9f;
  }

  body .site-header .site-nav {
    position: fixed !important;
    top: 68px !important;
    left: 14px !important;
    right: 14px !important;
    z-index: 999 !important;
    display: none !important;
    width: auto !important;
    max-height: calc(100vh - 86px) !important;
    overflow-y: auto !important;
    padding: 10px !important;
    border: 1px solid rgba(0, 118, 255, 0.16) !important;
    border-radius: 14px !important;
    background: rgba(255, 253, 249, 0.97) !important;
    box-shadow: 0 26px 70px rgba(17, 24, 39, 0.22) !important;
    backdrop-filter: blur(18px) !important;
    flex-direction: column !important;
    gap: 6px !important;
    align-items: stretch !important;
  }

  body .site-header .site-nav.open {
    display: flex !important;
  }

  body .site-header .site-nav > a,
  body .site-header .site-nav .nav-link {
    justify-content: flex-start !important;
    min-height: 44px !important;
    padding: 11px 12px !important;
    border-radius: 10px !important;
    background: rgba(0, 118, 255, 0.04) !important;
    color: var(--ink) !important;
    white-space: normal !important;
  }

  body .site-header .nav-social-links {
    display: flex !important;
    padding: 8px 4px 0 !important;
  }

  body .site-header .nav-dropdown {
    width: 100% !important;
  }
}

@media (max-width: 620px) {
  body .site-header .nav-toggle {
    right: calc(10px + min(132px, calc(100vw - 182px)) + 8px) !important;
    width: 38px !important;
    min-width: 38px !important;
    height: 38px !important;
    min-height: 38px !important;
  }
}

@media (max-width: 380px) {
  body .site-header .nav-toggle {
    right: 138px !important;
  }
}

@media (max-width: 340px) {
  body .site-header .nav-toggle {
    right: 134px !important;
  }
}

/* Final guard: keep Wissen article pages inside very small mobile viewports. */
@media (max-width: 620px) {
  main.article-page,
  main.article-page main,
  main.article-page .article-page {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  main.article-page .article-layout,
  main.article-page .knowledge-article,
  main.article-page .article-content,
  main.article-page .article-section,
  main.article-page .article-section > *,
  main.article-page .simple-explain-card,
  main.article-page .article-check-list,
  main.article-page .article-callout,
  main.article-page .article-highlight,
  main.article-page .article-visual,
  main.article-page .fact-grid,
  main.article-page .article-cta-card,
  main.article-page .article-cta-card > div,
  main.article-page .related-topic-grid,
  main.article-page .related-topic-card,
  main.article-page .table-wrap {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  main.article-page .article-layout {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 22px;
    padding-top: 36px;
    padding-bottom: 54px;
  }

  main.article-page .article-hero-grid {
    width: calc(100% - 28px) !important;
    max-width: calc(100% - 28px) !important;
    margin-inline: auto !important;
  }

  main.article-page .article-section {
    padding: 20px;
    border-radius: 14px;
    overflow: hidden;
  }

  main.article-page .article-section h2,
  main.article-page .article-section h3,
  main.article-page .article-section p,
  main.article-page .article-section li,
  main.article-page .simple-explain-card p,
  main.article-page .article-highlight span,
  main.article-page .related-topic-card strong,
  main.article-page .related-topic-card span {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
  }

  main.article-page .article-section h2 {
    font-size: clamp(24px, 7.2vw, 31px);
    line-height: 1.12;
  }

  main.article-page .simple-explain-card {
    padding: 16px;
  }

  main.article-page .article-visual {
    min-height: 220px;
  }

  main.article-page .article-visual figcaption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
    font-size: 15px;
  }

  main.article-page .fact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  main.article-page .info-table {
    min-width: 560px;
  }
}

@media (max-width: 380px) {
  main.article-page .article-section {
    padding: 18px;
  }
}

/* Final guard: mobile hero CTAs must never crop text at tiny viewport widths. */
@media (max-width: 620px) {
  .home-v1 .home-hero-v1-actions,
  .home-v1 .hero-actions {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    gap: 12px !important;
  }

  .home-v1 .home-hero-v1-actions .btn,
  .home-v1 .hero-actions .btn {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    justify-content: center !important;
    white-space: normal !important;
    text-align: center !important;
  }
}

/* Final mobile header guard: logo, menu and Online-Treff must stay visible. */
@media (max-width: 620px) {
  body .site-header {
    display: grid !important;
    grid-template-columns: minmax(78px, 1fr) 40px minmax(116px, 124px) !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 100vw !important;
    min-height: 62px !important;
    padding: 10px 12px !important;
    overflow: visible !important;
  }

  body .site-header .brand {
    grid-column: 1 !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  body .site-header .brand img {
    width: min(108px, 30vw) !important;
    max-width: 108px !important;
  }

  body .site-header .nav-toggle {
    display: inline-grid !important;
    position: static !important;
    grid-column: 2 !important;
    justify-self: center !important;
    width: 40px !important;
    min-width: 40px !important;
    height: 40px !important;
    min-height: 40px !important;
    margin: 0 !important;
    right: auto !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
  }

  body .site-header .header-actions {
    display: flex !important;
    position: static !important;
    grid-column: 3 !important;
    justify-self: end !important;
    align-items: center !important;
    width: 124px !important;
    min-width: 0 !important;
    max-width: 124px !important;
    margin: 0 !important;
    right: auto !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
  }

  body .site-header .header-social-links {
    display: none !important;
  }

  body .site-header .header-actions .header-cta {
    width: 124px !important;
    min-width: 0 !important;
    max-width: 124px !important;
    height: 40px !important;
    min-height: 40px !important;
    padding: 0 8px !important;
    gap: 5px !important;
    font-size: 12px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
  }

  body .site-header .header-actions .header-cta .btn-icon {
    flex: 0 0 18px !important;
    width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
    font-size: 14px !important;
  }

  body .site-header .site-nav {
    grid-column: 1 / -1 !important;
  }

  body .site-header .site-nav.open {
    margin-top: 8px !important;
  }
}

@media (max-width: 380px) {
  body .site-header {
    grid-template-columns: minmax(72px, 1fr) 38px minmax(108px, 112px) !important;
    gap: 7px !important;
    padding-inline: 10px !important;
  }

  body .site-header .brand img {
    width: min(96px, 29vw) !important;
  }

  body .site-header .nav-toggle {
    width: 38px !important;
    min-width: 38px !important;
    height: 38px !important;
    min-height: 38px !important;
  }

  body .site-header .header-actions,
  body .site-header .header-actions .header-cta {
    width: 112px !important;
    max-width: 112px !important;
  }

  body .site-header .header-actions .header-cta {
    padding-inline: 7px !important;
    font-size: 11px !important;
  }
}
