/* ═══════════════════════════════════════════
   DESIGN SYSTEM – ZU HAUSE HELDEN
   Bold & Kontrastreich · 2025
═══════════════════════════════════════════ */
:root {
  --ink: #162540;
  --ink-soft: #1e3252;
  --em: #166b46;
  --em-hover: #0f5236;
  --em-light: #1e8a5a;
  --em-tint: #e8f7f0;
  --white: #ffffff;
  --surface: #f5f5f3;
  --surface2: #ebebea;
  --border: #e4e4e2;
  --text: #111827;
  --text-mid: #4b5563;
  --text-muted: #9ca3af;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.11);
  --r: 10px;
  --r-lg: 16px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--white);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── CONTAINER LABEL SYSTEM (für Designer-Übergabe) ── */

/* ── NAV ── */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 48px;
  gap: 28px;
}
.logo {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.5px;
  text-decoration: none;
}
.nav-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition:
    color 0.15s,
    border-color 0.15s;
}
.col-span-2 {
    grid-column: span 2 / span 2;
}
textarea {
  height: 150px !important;
}
.nav-link:hover,
.nav-link.active {
  color: var(--ink);
  border-bottom-color: var(--em);
}
.nav-phone {
  margin-left: auto;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--em, #166b46) !important;
}
.btn-em {
  background: var(--em);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: background 0.15s;
  white-space: nowrap;
  display: inline-block;
}
.btn-em:hover {
  background: var(--em-hover);
  color: white !important;
}
.btn-primary {
  background: var(--em);
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: var(--r);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 20px rgba(22, 107, 70, 0.38);
  transition:
    background 0.15s,
    transform 0.1s;
}
.btn-primary:hover {
  background: var(--em-hover);
  color: white !important;
  transform: translateY(-1px);
}
.btn-ghost {
  color: rgba(255, 255, 255, 1);;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s;
}
.btn-ghost:hover {
  color: white;
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text-mid);
  padding: 12px 24px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  display: inline-block;
  transition:
    border-color 0.15s,
    color 0.15s;
}
.btn-outline:hover {
  border-color: var(--em);
  color: var(--em);
}

/* ── LAYOUT ── */
.section {
  padding: 88px 48px;
}
.section-alt {
  background: var(--surface);
}
.section-ink {
  background: var(--ink);
}
.wrap {
  max-width: 1100px;
  margin: 0 auto;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--em);
  margin-bottom: 8px;
}
.eyebrow-white {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 1);;
  margin-bottom: 8px;
}
h2.st,
.reviews-section-title {
  font-size: 40px !important;
  font-weight: 800 !important;
  color: var(--ink) !important;
  letter-spacing: -0.3px !important;
  line-height: 1.1 !important;
  margin-bottom: 14px !important;
}
h2.st-white {
  font-size: 40px !important;
  font-weight: 800 !important;
  color: white !important;
  letter-spacing: -0.3px !important;
  line-height: 1.1 !important;
  margin-bottom: 14px !important;
}
.s-sub {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 52px;
}
.s-sub-white {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 52px;
}
.center {
  text-align: center;
}
.center .s-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ── CHECK ITEMS ── */
.ci {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
}
.ci-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--em-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: var(--em);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   01 · HERO
═══════════════════════════════════════════ */
.hero {
  background: linear-gradient(
    135deg,
    rgba(8, 16, 36, 0.97) 0%,
    rgba(12, 28, 58, 0.93) 40%,
    rgba(18, 52, 95, 0.82) 75%,
    rgba(24, 72, 128, 0.7) 100%
  );
  padding: 80px 48px 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: var(--em);
  opacity: 0.05;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--em);
  opacity: 0.04;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--em-light);
}
.hero-badge span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 1);;
}
.hero h1 {
  font-size: 52px;
  font-weight: 800;
  color: white !important;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}
.hero h1 em {
  font-style: normal;
  color: var(--em-light);
}
.hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 32px;
  line-height: 1.75;
  max-width: 500px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.hero-checks {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--r-lg);
  padding: 32px;
}
.hc-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--em-light);
  margin-bottom: 8px;
}
.hc-big {
  font-size: 56px;
  font-weight: 800;
  color: white;
  letter-spacing: -3px;
  line-height: 1;
}
.hc-big span {
  color: var(--em-light);
  font-size: 30px;
}
.hc-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 1);
  margin: 10px 0 22px;
  line-height: 1.65;
}
.hc-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 18px;
}
.hc-item {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.hc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--em-light);
  margin-top: 8px;
  flex-shrink: 0;
}
.hc-item span {
  font-size: 13px;
  color: rgba(255, 255, 255, 1);;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   02 · AUTORENBOX – Elegant
═══════════════════════════════════════════ */
.author-wrap {
  max-width: 760px;
  margin: 0 auto;
}
.author-box {
  display: grid;
  grid-template-columns: auto 1px 1fr auto;
  gap: 0;
  align-items: stretch;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.author-left {
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.author-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--border);
}
.author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-info-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.3px;
  margin-bottom: 2px;
}
.author-info-role {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}
.author-divider {
  width: 1px;
  background: var(--border);
  margin: 16px 0;
}
.author-meta-wrap {
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.author-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.author-meta-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-muted);
}
.author-meta-val {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.author-right {
  padding: 0 24px;
  display: flex;
  align-items: center;
  border-left: 1px solid var(--border);
}
.author-badge {
  background: var(--em-tint);
  color: var(--em);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}
.author-badge::before {
  content: "✓";
  font-weight: 800;
}

/* ═══════════════════════════════════════════
   03 · TRUSTBAR – SONNEN STIL (Icon + Text)
═══════════════════════════════════════════ */
.trustbar {
  background: var(--white);
  padding: 72px 48px;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trustbar-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -1.5px;
  margin-bottom: 18px;
  line-height: 1.1;
}
.trustbar-sub {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 580px;
  margin: 0 auto 64px;
  line-height: 1.75;
}
.trustbar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 860px;
  margin: 0 auto;
}
.tb {
  padding: 0 40px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.tb:last-child {
  border-right: none;
}
.tb-icon {
  margin-bottom: 22px;
  display: flex;
  justify-content: center;
}
.tb-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}
.tb-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   04 · SCHNELLINFO BOX – SPLIT LAYOUT
═══════════════════════════════════════════ */
.qi-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.qi-visual {
  background: var(--ink);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}
.qi-visual::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--em);
  opacity: 0.08;
}
.qi-visual::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--em);
  opacity: 0.06;
}
.qi-visual-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--em-light);
  margin-bottom: 12px;
}
.qi-visual-title {
  font-size: 26px;
  font-weight: 800;
  color: white;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 8px;
}
.qi-visual-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}
.qi-visual-svg {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
}
.qi-legend {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.qi-leg-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qi-leg-line {
  width: 24px;
  height: 2px;
  background: var(--em-light);
  border-radius: 1px;
}
.qi-leg-line.dashed {
  background: transparent;
  border-top: 2px dashed rgba(255, 255, 255, 1);;
}
.qi-leg-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 1);;
}
.qi-leg-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 1);;
}
/* Right side */
.qi-content {
  background: white;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.qi-content-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  line-height: 1.25;
}
.qi-content-sub {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 28px;
  line-height: 1.7;
}
.qi-list {
  list-style: none;
  margin-bottom: 28px;
}
.qi-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.qi-row:last-child {
  border-bottom: none;
}
.qi-row-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
  border: 3px solid white;
  box-shadow: 0 0 0 1.5px var(--border);
}
.qi-row-body {
  flex: 1;
}
.qi-row-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.3;
}
.qi-row-text {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}
.qi-row-link {
  font-size: 12px;
  color: var(--em);
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  margin-top: 2px;
}

/* ═══════════════════════════════════════════
   04b · INHALTSVERZEICHNIS (eigenes Feld)
═══════════════════════════════════════════ */
.toc-standalone {
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.toc-standalone-head {
  background: var(--ink);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.toc-standalone-title {
  font-size: 13px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.1px;
}
.toc-standalone-count {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 20px;
}
.toc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.toc-item-new {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: background 0.12s;
}
.toc-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--em);
  min-width: 20px;
  flex-shrink: 0;
  line-height: 1;
}
.toc-item-new:hover {
  background: var(--em-tint);
}
.toc-item-new:nth-child(even) {
  border-right: none;
}
.toc-item-new:nth-last-child(-n + 2) {
  border-bottom: none;
}
.toc-link-new {
  font-size: 14px;
  color: var(--text-mid);
  text-decoration: none;
  line-height: 1.5;
  font-weight: 500;
  transition: color 0.12s;
}
.toc-item-new:hover .toc-link-new {
  color: var(--em);
}

/* ═══════════════════════════════════════════
   05 · INHALTSVERZEICHNIS
═══════════════════════════════════════════ */
.toc {
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  padding: 24px 28px;
  max-width: 480px;
}
.toc-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.2px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.toc-title::before {
  content: "≡";
  color: var(--em);
  font-size: 16px;
}
.toc-list {
  list-style: none;
  counter-reset: toc;
}
.toc-item {
  counter-increment: toc;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.toc-item:last-child {
  border-bottom: none;
}
.toc-item a {
  font-size: 14px;
  color: var(--text-mid);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.15s;
}
.toc-item a:hover {
  color: var(--em);
}

/* ═══════════════════════════════════════════
   06 · FLIESSTEXT – EDITORIAL LAYOUT
═══════════════════════════════════════════ */
.article-wrap {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 64px;
  align-items: start;
}
/* Sticky Sidebar */
.article-sidebar {
  position: sticky;
  top: 88px;
}
.article-sidebar-block {
  margin-bottom: 28px;
}
.article-sidebar-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--em);
  margin-bottom: 10px;
}
.article-sidebar-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.5px;
  line-height: 1.3;
  margin-bottom: 8px;
}
.article-sidebar-text {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
}
.article-sidebar-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 20px 0;
}
/* Fakten-Box in Sidebar */
.article-fact {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.article-fact:last-child {
  border-bottom: none;
}
.article-fact-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--em);
  margin-top: 7px;
  flex-shrink: 0;
}
.article-fact-text {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}
.article-fact-text strong {
  color: var(--ink);
}
/* Haupt-Artikel */
.article-body {
  max-width: none;
}
/* H2 – große Frage */
.article-body h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0.2px;
  margin: 52px 0 16px;
  line-height: 1.25;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
}
.article-body h2:first-child {
  margin-top: 0;
}
/* H3 – Unterfrage mit Akzentlinie */
.article-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.3px;
  margin: 32px 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.article-body h3::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 18px;
  border-radius: 2px;
  background: var(--em);
  flex-shrink: 0;
}
.article-body p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 18px;
}
.article-body strong {
  color: var(--ink);
  font-weight: 700;
}
/* Listen */
.article-body ul {
  list-style: none;
  margin-bottom: 20px;
  background: var(--surface);
  border-radius: var(--r);
  border: 1px solid var(--border);
  overflow: hidden;
}
.article-body ul li {
  font-size: 15px;
  color: var(--text-mid);
  padding: 11px 18px;
  border-bottom: 1px solid var(--border);
  line-height: 1.65;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.article-body ul li:last-child {
  border-bottom: none;
}
.article-body ul li::before {
  content: "→";
  color: var(--em);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
/* Highlight-Box im Artikel */
.article-highlight {
  background: var(--em-tint);
  border-left: 4px solid var(--em);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 18px 22px;
  margin: 24px 0;
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
}
.article-highlight strong {
  color: var(--em);
}
/* Trennlinie zwischen Themenblöcken */
.article-sep {
  border: none;
  border-top: 1px solid var(--border);
  margin: 40px 0;
}

/* ═══════════════════════════════════════════
   07 · 3 VERTIKALE KACHELN MIT BILD
═══════════════════════════════════════════ */
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.img-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition:
    box-shadow 0.25s,
    transform 0.25s,
    border-color 0.25s;
  cursor: pointer;
}
.img-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  border-color: rgba(22, 107, 70, 0.2);
}
.img-card.featured {
  border-color: transparent;
  box-shadow: inset 0 0 0 2px var(--em);
}
.ic-img {
  height: 200px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  overflow: hidden;
  position: relative;
}
.ic-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ic-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--em);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}
.ic-body {
  padding: 22px;
}
.ic-cat {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--em);
  margin-bottom: 6px;
}
.ic-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.4px;
  margin-bottom: 8px;
  line-height: 1.25;
}
.ic-text {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 14px;
}
.ic-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.ic-preis {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.3px;
}
.ic-zuschuss {
  font-size: 11px;
  font-weight: 700;
  color: var(--em);
  background: var(--em-tint);
  padding: 3px 10px;
  border-radius: 20px;
}
.ic-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--em);
  margin-top: 12px;
  display: block;
}
.zhh-modell-arrows { display: none; }

/* ═══════════════════════════════════════════
   08 · CTA BANNER
═══════════════════════════════════════════ */
.cta-banner {
  background: var(--em);
  padding: 72px 48px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}
.cta-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-inner h2 {
  font-size: 42px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.3px;
  line-height: 1.25;
  margin-bottom: 12px;
}
.cta-inner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 28px;
}
.cta-checks {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.cta-check {
  font-size: 13px;
  color: rgba(255, 255, 255, 1);;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cta-check::before {
  content: "✓";
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
}
.btn-white {
  background: white;
  color: var(--em);
  border: none;
  padding: 16px 36px;
  border-radius: var(--r);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.1s;
}
.btn-white:hover {
  color: var(--em) !important;
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════
   09 · TABELLE
═══════════════════════════════════════════ */
.data-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.data-table thead tr {
  background: var(--ink);
}
.data-table th {
  padding: 16px 20px;
  text-align: left;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: white;
}
.data-table tbody tr {
  background: white;
  border-bottom: 1px solid var(--border);
  transition: background 0.12s;
}
.data-table tbody tr:hover {
  background: var(--em-tint);
}
.data-table tbody tr:last-child {
  border-bottom: none;
}
.data-table td {
  padding: 17px 20px;
  font-size: 14px;
  color: var(--text);
}
.data-table td:first-child {
  font-weight: 700;
  color: var(--ink);
}
.td-em {
  color: var(--em);
  font-weight: 700;
}
.td-bold {
  font-weight: 800;
  color: var(--ink);
  font-size: 15px;
}
.td-highlight {
  color: var(--em);
  font-weight: 800;
  font-size: 15px;
}
.table-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.6;
}
/* Highlighted row */
.data-table tbody tr.tr-highlight {
  background: var(--em-tint) !important;
  border-left: 3px solid var(--em);
}

/* ═══════════════════════════════════════════
   10 · 2 KACHELN GEGENÜBERSTELLUNG
═══════════════════════════════════════════ */
.versus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.vs-card {
  background: white;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.vs-card.em-card {
  border: 1.5px solid var(--em);
}
.vs-head {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}
.vs-head.em-head {
  background: var(--em);
}
.vs-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.vs-icon.em-icon {
  background: rgba(255, 255, 255, 0.15);
}
.vs-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.3px;
}
.vs-title.white {
  color: white;
}
.vs-sub {
  font-size: 12px;
  color: var(--text-muted);
}
.vs-sub.white {
  color: rgba(255, 255, 255, 1);;
}
.vs-body {
  padding: 20px 24px;
}
.vs-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
}
.vs-row:last-child {
  border-bottom: none;
}
.vs-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  margin-top: 2px;
}
.vs-check.green {
  background: var(--em-tint);
  color: var(--em);
}
.vs-check.gray {
  background: var(--surface2);
  color: var(--text-muted);
}
.vs-row-text {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
}
.vs-footer {
  padding: 16px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.vs-footer.em-footer {
  background: var(--em-tint);
}

/* ═══════════════════════════════════════════
   11 · 2 KACHELN BEISPIELRECHNUNG
═══════════════════════════════════════════ */
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.calc-card {
  background: white;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.calc-head {
  padding: 18px 24px;
  background: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.calc-head-icon {
  font-size: 22px;
}
.calc-head-title {
  font-size: 15px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.2px;
}
.calc-body {
  padding: 22px 24px;
}
.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.calc-row:last-child {
  border-bottom: none;
}
.calc-label {
  color: var(--text-mid);
}
.calc-val {
  font-weight: 700;
  color: var(--ink);
}
.calc-row.minus .calc-val {
  color: #d97706;
}
.calc-row.em-row {
  background: var(--em-tint);
  margin: 0 -24px;
  padding: 12px 24px;
  border-bottom: none;
}
.calc-row.em-row .calc-label {
  color: var(--em);
  font-weight: 700;
}
.calc-row.em-row .calc-val {
  color: var(--em);
  font-size: 18px;
  font-weight: 800;
}
.calc-footer {
  padding: 16px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.calc-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.calc-result-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-mid);
}
.calc-result-val {
  font-size: 22px;
  font-weight: 800;
  color: var(--em);
  letter-spacing: -1px;
}

/* ═══════════════════════════════════════════
   12 · SCHRITT FÜR SCHRITT – Horizontal
═══════════════════════════════════════════ */
.steps-h {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-bottom: 48px;
}
/* Verbindungslinie zwischen den Kreisen */
.steps-h::before {
  content: "";
  position: absolute;
  top: 27px;
  left: calc(50% / 3);
  right: calc(50% / 3);
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.sh-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}
.sh-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 24px;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 1.5px var(--border);
  background: var(--ink);
  color: white;
  transition:
    background 0.2s,
    box-shadow 0.2s;
}
.sh-num.active {
  background: var(--em);
  box-shadow:
    0 0 0 1.5px var(--em),
    0 4px 20px rgba(22, 107, 70, 0.3);
}
.sh-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.3px;
  margin-bottom: 10px;
  line-height: 1.25;
}
.sh-body {
  display: contents;
}
.sh-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 260px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   13 · FAQ – ENPAL STIL (Links Titel / Rechts Accordion)
═══════════════════════════════════════════ */
.faq-split {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.faq-left h2 {
  font-size: 40px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.3px;
  line-height: 1.15;
  margin-bottom: 8px;
}
.faq-left .faq-sub {
  font-size: 20px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: -0.3px;
  line-height: 1.3;
  margin-bottom: 0;
}
/* Accordion – komplett clean, nur Linie als Trenner */
.faq-accord-list {
  border: none;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-q {
  padding: 22px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 20px;
  background: transparent;
  transition: color 0.15s;
  letter-spacing: -0.2px;
}
.faq-q:hover {
  color: var(--em);
}
/* Chevron Icon statt runder Button */
.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: var(--text-muted);
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--ink);
}
.faq-a {
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.78;
  display: none;
  max-width: 580px;
}
.faq-item.open .faq-a {
  display: block;
}
/* Footer Zeile */
.faq-footer-row {
  padding: 22px 0 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.faq-footer-row a {
  color: var(--em);
  text-decoration: none;
  border-bottom: 2px solid var(--em-tint);
  transition: border-color 0.15s;
}
.faq-footer-row a:hover {
  border-color: var(--em);
}

/* ═══════════════════════════════════════════
   13 · BEWERTUNGEN – SONNEN STIL (Masonry Grid)
═══════════════════════════════════════════ */
.reviews-section-title {
  text-align: center;
}
.reviews-section-sub {
  font-size: 16px;
  color: var(--text-mid);
  text-align: center;
  max-width: 620px;
  margin: 0 auto 52px;
  line-height: 1.75;
}
/* Masonry-ähnliches Grid: 3 Spalten */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 14px;
}
/* Quote-Card (Bild mit Overlay) */
.rv-quote {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.rv-quote-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rv-quote-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(11, 17, 32, 0.75) 0%,
    rgba(11, 17, 32, 0.5) 100%
  );
}
.rv-quote-content {
  position: absolute;
  inset: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.rv-quote-text {
  font-size: 16px;
  font-weight: 700;
  color: white;
  line-height: 1.4;
  letter-spacing: -0.2px;
}
.rv-quote-footer {
  display: flex;
  align-items: center;
  gap: 8px;
}
.rv-quote-link {
  font-size: 13px;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  gap: 6px;
}
.rv-quote-link::after {
  content: "→";
}
/* Text Review Card */
.rv-card {
  background: white;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow);
}
.rv-stars {
  color: #f59e0b;
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 1;
}
.rv-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  flex: 1;
}
.rv-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: auto;
}
.rv-author strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  display: block;
  letter-spacing: -0.1px;
}
.rv-author span {
  font-size: 12px;
  color: var(--text-muted);
}
.rv-source {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
}
.rv-g-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4285f4;
  flex-shrink: 0;
}
/* Grid Placement */
.rv-span-row {
  grid-row: span 2;
}
.rv-span-col {
  grid-column: span 2;
}

/* ═══════════════════════════════════════════
   15 · INTERNE VERLINKUNG – DUNKELBLAU
═══════════════════════════════════════════ */
.internal-section {
  background: linear-gradient(
    135deg,
    rgba(8, 16, 36, 0.97) 0%,
    rgba(12, 28, 58, 0.93) 40%,
    rgba(18, 52, 95, 0.82) 75%,
    rgba(24, 72, 128, 0.7) 100%
  );
  padding: 72px 48px;
}
.internal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 40px;
}
.il {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  padding: 24px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition:
    background 0.15s,
    border-color 0.15s,
    transform 0.15s;
}
.il:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(22, 107, 70, 0.4);
  transform: translateY(-3px);
}
.il-cat {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--em-light);
}
.il-title {
  font-size: 16px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.2px;
  line-height: 1.3;
}
.il-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 1);
  line-height: 1.6;
}
.il-arrow {
  font-size: 18px;
  color: var(--em-light);
  margin-top: auto;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: var(--ink);
  padding: 64px 48px 28px;
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.f-brand {
  font-size: 20px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.f-tag {
  font-size: 13px;
  color: rgba(255, 255, 255, 1);;
  line-height: 1.75;
  margin-bottom: 20px;
}
.f-head {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 1);;
  margin-bottom: 14px;
}
.f-links {
  list-style: none;
}
.f-links li {
  margin-bottom: 7px;
}
.f-links li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 1);;
  text-decoration: none;
  transition: color 0.15s;
}
.f-links li a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.f-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 1);;
  flex-wrap: wrap;
  gap: 8px;
}

/* ═══════════════════════════════════════════
   SECTION DIVIDER LABELS (für Designer)
═══════════════════════════════════════════ */
.section-divider {
  background: var(--ink);
  padding: 10px 48px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sd-name {
  font-size: 11px;
  color: rgba(255, 255, 255, 1);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}
.sd-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 1024px) {
  .hero-inner,
  .why-grid,
  .faq-split,
  .versus-grid,
  .calc-grid,
  .card-grid-3,
  .review-grid {
    grid-template-columns: 1fr;
  }
  .hero-card {
    display: none;
  }
  .hero h1 {
    font-size: 36px;
  }
  .trustbar {
    flex-wrap: wrap;
  }
  .tb {
    width: 50%;
    border-bottom: 1px solid var(--border);
  }
  .internal-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  nav {
    padding: 0 20px;
    gap: 16px;
  }
  .section,
  .internal-section {
    padding: 60px 24px;
  }
  .section-divider {
    padding: 10px 24px;
  }
}
/* ═══════════════════════════════════════════
   RESPONSIVE – TABLET (max 960px)
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* NAV */
  nav {
    padding: 0 16px;
    gap: 10px;
  }
  .nav-link {
    display: none;
  }
  .nav-phone {
    display: none;
  }

  /* HERO */
  .hero {
    padding: 56px 24px 48px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-card {
    display: none;
  }
  .hero h1 {
    font-size: 38px;
    letter-spacing: -1.5px;
  }
  .hero-sub {
    font-size: 15px;
  }
  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  /* AUTHOR BOX */
  .author-box {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
  }
  .author-divider {
    width: auto;
    height: 1px;
    margin: 0 24px;
  }
  .author-meta-wrap {
    padding: 16px 24px;
    flex-wrap: wrap;
    gap: 16px;
  }
  .author-right {
    border-left: none;
    border-top: 1px solid var(--border);
    padding: 16px 24px;
  }

  /* TRUSTBAR */
  .trustbar {
    padding: 48px 24px;
  }
  .trustbar-grid {
    grid-template-columns: 1fr;
  }
  .tb {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
  }
  .tb:last-child {
    border-bottom: none;
  }

  /* SCHNELLINFO SPLIT */
  .qi-split {
    grid-template-columns: 1fr;
  }
  .qi-visual {
    min-height: 280px;
    padding: 32px 28px;
  }
  .qi-content {
    padding: 32px 28px;
  }

  /* TOC */
  .toc-grid {
    grid-template-columns: 1fr;
  }
  .toc-item-new:nth-child(even) {
    border-right: 1px solid var(--border);
  }
  .toc-item-new {
    border-right: none !important;
  }

  /* FLIESSTEXT */
  .article-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .article-sidebar {
    position: static;
    top: auto;
  }

  /* FAKTENRASTER */
  .faktenraster-grid {
    grid-template-columns: 1fr !important;
  }

  /* KACHELN */
  .card-grid-3 {
    grid-template-columns: 1fr;
  }

  /* CTA BANNER B */
  .cta-banner-b-inner {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }
  .cta-banner-b-img {
    display: none;
  }

  /* CTA BANNER C */
  .cta-banner-c-inner {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  /* TABELLE */
  .data-table {
    font-size: 12px;
  }
  .data-table th,
  .data-table td {
    padding: 12px 10px;
  }

  /* VERSUS */
  .versus-grid {
    grid-template-columns: 1fr;
  }

  /* CALC */
  .calc-grid {
    grid-template-columns: 1fr;
  }

  /* SCHRITTE HORIZONTAL */
  .steps-h {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-left: 10px;
  }
  .steps-h::before {
    display: none;
  }
  .sh-item {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 20px;
    padding: 0;
  }
  .sh-num {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .sh-text {
    max-width: 100%;
  }

  /* FAQ */
  .faq-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .faq-left h2 {
    font-size: 32px;
  }

  /* BEWERTUNGEN */
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
  .rv-span-row {
    grid-row: span 1;
  }
  .rv-span-col {
    grid-column: span 1;
  }

  /* INTERNE VERLINKUNG */
  .internal-section {
    padding: 48px 24px;
  }
  .internal-grid {
    grid-template-columns: 1fr;
  }

  /* FOOTER */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  footer {
    padding: 48px 24px 24px;
  }

  /* HEADLINES */
  h2.st,
  h2.st-white,
  .reviews-section-title {
    font-size: 32px;
    letter-spacing: 0px;
  }
  .trustbar-title {
    font-size: 28px;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE – MOBIL (max 640px)
═══════════════════════════════════════════ */
@media (max-width: 767px) {
  /* NAV */
  nav {
    height: 56px;
    padding: 0 16px;
    gap: 8px;
  }
  .logo {
    font-size: 15px;
  }
  .btn-em {
    padding: 8px 14px;
    font-size: 12px;
  }

  /* HERO */
  .hero {
    padding: 40px 20px 36px;
  }
  .hero h1 {
    font-size: 30px;
    letter-spacing: -1px;
  }
  .hero-sub {
    font-size: 14px;
  }
  .hero-checks {
    flex-direction: column;
    gap: 8px;
  }
  .btn-primary {
    padding: 13px 22px;
    font-size: 15px;
  }

  /* AUTHOR BOX */
  .author-meta-wrap {
    gap: 12px;
  }
  .author-meta-item {
    min-width: 80px;
  }

  /* TRUSTBAR */
  .trustbar {
    padding: 36px 20px;
  }
  .trustbar-title {
    font-size: 24px;
  }
  .tb-icon svg {
    width: 36px;
    height: 36px;
  }

  /* SCHNELLINFO */
  .qi-visual {
    padding: 24px 20px;
  }
  .qi-content {
    padding: 24px 20px;
  }
  .qi-content-title {
    font-size: 18px;
  }
  .qi-legend {
    flex-direction: column;
    gap: 10px;
  }

  /* TOC */
  .toc-standalone-head {
    padding: 12px 16px;
  }
  .toc-item-new {
    padding: 10px 14px;
  }

  /* FLIESSTEXT */
  .article-body h2 {
    font-size: 20px;
  }
  .article-body h3 {
    font-size: 16px;
  }
  .article-body p {
    font-size: 15px;
  }

  /* FAKTENLEISTE (5er Grid → 2er Grid) */
  .zhh-faktenleiste {
    grid-template-columns: 1fr 1fr !important;
  }
  .zhh-faktenleiste > div:last-child {
    grid-column: span 2;
  }

  /* KACHELN */
  .ic-img {
    height: 160px;
  }

  /* CTA BANNER A */
  .cta-banner {
    padding: 48px 20px;
  }
  .cta-inner h2 {
    font-size: 28px;
  }
  .cta-checks {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .btn-white {
    padding: 14px 24px;
    font-size: 15px;
  }

  /* TABELLE – horizontal scrollbar */
  .data-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .data-table {
    min-width: 520px;
  }

  /* VERSUS */
  .vs-head {
    flex-direction: row;
    gap: 12px;
  }

  /* CALC */
  .calc-row {
    flex-wrap: wrap;
    gap: 4px;
  }
  .calc-result {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .calc-result-val {
    font-size: 28px;
  }

  /* SCHRITTE */
  .sh-num {
    width: 44px;
    height: 44px;
    font-size: 13px;
  }
  .sh-title {
    font-size: 15px;
  }

  /* SCHRITTE VERTIKAL */
  .steps-v-line {
    display: none;
  }

  /* FAQ */
  .faq-q {
    font-size: 15px;
    padding: 18px 0;
  }
  .faq-left h2 {
    font-size: 26px;
  }

  /* BEWERTUNGEN */
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .rv-span-col {
    grid-column: span 1;
  }

  /* INTERNE VERLINKUNG – Mosaik */
  .il-mosaic-row1 {
    grid-template-columns: 1fr !important;
  }
  .il-mosaic-row2 {
    grid-template-columns: 1fr !important;
  }

  /* FOOTER */
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .f-bottom {
    flex-direction: column;
    gap: 6px;
  }

  /* HEADLINES */
  h2.st,
  h2.st-white,
  .reviews-section-title {
    font-size: 26px;
    letter-spacing: 0px;
  }
  .s-sub {
    font-size: 15px;
    margin-bottom: 32px;
  }

  /* SECTION PADDING */
  .section,
  .internal-section {
    padding: 48px 20px;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE – INLINE-STYLE OVERRIDES
   (für Widgets mit hardcoded inline styles)
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* CTA Banner B – Bild+Text Grid */
  .zhh-cta-b > div[style*="grid-template-columns"] {
    display: block !important;
  }
  .zhh-cta-b .cta-b-img-wrap {
    display: none !important;
  }
  .zhh-cta-b .cta-b-content {
    padding: 40px 24px !important;
    border-left: none !important;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  /* CTA Banner C – 2-Spalten Grid */
  .zhh-cta-c > div[style*="grid-template-columns"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
  }

  /* Faktenraster 2-spaltig → 1-spaltig */
  .zhh-faktenraster > div[style*="grid-template-columns:1fr 2fr"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* Schritte Vertikal Sticky Sidebar */
  .zhh-schritte-v > div[style*="grid-template-columns:1fr 1.4fr"] {
    grid-template-columns: 1fr !important;
  }
  .zhh-schritte-v .steps-v-sticky {
    position: static !important;
  }

  /* Interne Verlinkung Mosaik */
  .zhh-verlinkung div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  .zhh-verlinkung div[style*="grid-template-columns:1fr 1fr 1fr"] {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Fliesstext Faktenleiste */
  .zhh-faktenleiste-bar {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 767px) {
  /* Fliesstext Faktenleiste → 1-spaltig */
  .zhh-faktenleiste-bar {
    grid-template-columns: 1fr !important;
  }

  /* Interne Verlinkung Mosaik → 1-spaltig */
  .zhh-verlinkung div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  .zhh-verlinkung div[style*="grid-template-columns:1fr 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* CTA Banner B → kompakt */
  .zhh-cta-b .cta-b-content {
    padding: 32px 20px !important;
  }
  .zhh-cta-b h2 {
    font-size: 28px !important;
  }

  /* CTA Banner C → kompakt */
  .zhh-cta-c {
    padding: 48px 20px !important;
  }
  .zhh-cta-c h2 {
    font-size: 26px !important;
    letter-spacing: 0px !important;
  }
  .zhh-cta-c-card {
    padding: 22px !important;
  }
  .zhh-cta-c-result {
    font-size: 32px !important;
    letter-spacing: -0.5px !important;
  }

  /* Tabelle scrollbar wrapper */
  .section:has(.data-table) {
    overflow-x: hidden;
  }

  /* Author Box → gestapelt */
  .author-box {
    display: flex !important;
    flex-direction: column !important;
  }
  .author-divider {
    width: calc(100% - 48px) !important;
    height: 1px !important;
    margin: 0 24px !important;
  }
}

/* ═══════════════════════════════════════════
   BLOGARTIKEL WIDGET
═══════════════════════════════════════════ */

/* Zentriertes Layout */
.zhh-blog-centered {
  max-width: 740px;
  margin: 0 auto;
}

/* Meta-Leiste */
.zhh-blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.zhh-blog-meta-cat {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--em);
  background: var(--em-tint);
  padding: 4px 12px;
  border-radius: 20px;
}
.zhh-blog-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.zhh-blog-meta-updated {
  margin-left: auto;
  font-style: italic;
}

/* Hero-Bild */
.zhh-blog-hero-img {
  margin-bottom: 36px;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.zhh-blog-hero-img img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 480px;
  object-fit: cover;
}

/* Bildunterschrift */
.zhh-blog-img-caption {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
  font-style: italic;
  line-height: 1.5;
}

/* Inline Bild-Blöcke */
.zhh-blog-img-block {
  margin: 28px 0;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.zhh-blog-img-block img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-lg);
}
.zhh-blog-img-half {
  max-width: 60%;
  margin-left: auto;
  margin-right: auto;
}

/* Artikel-Body Typografie (auch im Blog-Kontext) */
.zhh-blog-body h2,
.zhh-blog-centered h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0.2px;
  margin: 52px 0 16px;
  line-height: 1.25;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
}
.zhh-blog-body h2:first-child,
.zhh-blog-centered h2:first-child {
  margin-top: 0;
}

.zhh-blog-body h3,
.zhh-blog-centered h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.3px;
  margin: 36px 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.zhh-blog-body h3::before,
.zhh-blog-centered h3::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 18px;
  border-radius: 2px;
  background: var(--em);
  flex-shrink: 0;
}

.zhh-blog-body h4,
.zhh-blog-centered h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 24px 0 8px;
}

.zhh-blog-body p,
.zhh-blog-centered p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 18px;
}
.zhh-blog-body strong,
.zhh-blog-centered strong {
  color: var(--ink);
  font-weight: 700;
}

/* Listen */
.zhh-blog-body ul,
.zhh-blog-centered ul {
  list-style: none;
  margin-bottom: 20px;
  background: var(--surface);
  border-radius: var(--r);
  border: 1px solid var(--border);
  overflow: hidden;
}
.zhh-blog-body ul li,
.zhh-blog-centered ul li {
  font-size: 15px;
  color: var(--text-mid);
  padding: 11px 18px;
  border-bottom: 1px solid var(--border);
  line-height: 1.65;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.zhh-blog-body ul li:last-child,
.zhh-blog-centered ul li:last-child {
  border-bottom: none;
}
.zhh-blog-body ul li::before,
.zhh-blog-centered ul li::before {
  content: "→";
  color: var(--em);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Nummerierte Listen */
.zhh-blog-body ol,
.zhh-blog-centered ol {
  list-style: none;
  counter-reset: zhh-ol;
  margin-bottom: 20px;
}
.zhh-blog-body ol li,
.zhh-blog-centered ol li {
  counter-increment: zhh-ol;
  font-size: 15px;
  color: var(--text-mid);
  padding: 10px 0 10px 44px;
  border-bottom: 1px solid var(--border);
  line-height: 1.65;
  position: relative;
}
.zhh-blog-body ol li::before,
.zhh-blog-centered ol li::before {
  content: counter(zhh-ol, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--em);
}

/* Warning Box */
.zhh-blog-warning {
  background: #fffbeb;
  border-left: 4px solid #d97706;
  border-radius: 0 var(--r) var(--r) 0;
  padding: 18px 22px;
  margin: 24px 0;
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
}
.zhh-blog-warning strong {
  color: #b45309;
}

/* Blockquote */
.zhh-blog-quote {
  margin: 32px 0;
  padding: 28px 32px;
  background: var(--ink);
  border-radius: var(--r-lg);
  position: relative;
}
.zhh-blog-quote::before {
  content: "\201C";
  position: absolute;
  top: 12px;
  left: 24px;
  font-size: 64px;
  font-weight: 800;
  color: var(--em);
  line-height: 1;
  font-family: Georgia, serif;
}
.zhh-blog-quote-text {
  font-size: 18px;
  font-weight: 600;
  color: white;
  line-height: 1.6;
  letter-spacing: -0.2px;
  padding-left: 8px;
  margin-top: 24px;
}
.zhh-blog-quote-author {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 1);;
  padding-left: 8px;
  font-style: italic;
}

/* CTA Box */
.zhh-blog-cta {
  background: var(--em-tint);
  border: 1px solid rgba(22, 107, 70, 0.2);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.zhh-blog-cta-sub {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .zhh-blog-centered {
    max-width: 100%;
  }
  .zhh-blog-body h2,
  .zhh-blog-centered h2 {
    font-size: 22px;
    margin-top: 40px;
  }
  .zhh-blog-body h3,
  .zhh-blog-centered h3 {
    font-size: 17px;
  }
  .zhh-blog-quote {
    padding: 24px 24px 24px 28px;
  }
  .zhh-blog-quote-text {
    font-size: 16px;
  }
  .zhh-blog-img-half {
    max-width: 80%;
  }
}
@media (max-width: 767px) {
  .zhh-blog-meta {
    gap: 10px;
  }
  .zhh-blog-meta-updated {
    margin-left: 0;
  }
  .zhh-blog-body h2,
  .zhh-blog-centered h2 {
    font-size: 20px;
  }
  .zhh-blog-body p,
  .zhh-blog-centered p {
    font-size: 15px;
  }
  .zhh-blog-quote {
    padding: 20px;
  }
  .zhh-blog-quote::before {
    font-size: 48px;
    top: 8px;
    left: 16px;
  }
  .zhh-blog-quote-text {
    font-size: 15px;
    margin-top: 20px;
  }
  .zhh-blog-cta {
    padding: 20px;
  }
  .zhh-blog-img-half {
    max-width: 100%;
  }
}

@font-face {
  src: url("../fonts/plus-jakarta-sans-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("../fonts/plus-jakarta-sans-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("../fonts/plus-jakarta-sans-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("../fonts/plus-jakarta-sans-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ═══════════════════════════════════════════
   GRID LAYOUT CLASSES (replaces inline styles)
═══════════════════════════════════════════ */

/* CTA Banner B */
.zhh-cta-b {
  background: var(--ink);
  padding: 0 48px;
}
.zhh-cta-b-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 340px;
}
.zhh-cta-b-img {
  position: relative;
  padding: 32px 40px 32px 0;
  display: flex;
  align-items: stretch;
}
.zhh-cta-b-content {
  padding: 56px 0 56px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

/* CTA Banner C */
.zhh-cta-c-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Faktenraster */
.zhh-faktenraster-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

/* Lead Formular */
.zhh-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  margin-bottom: 20px;
}

/* Schritte Vertikal */
.zhh-schritte-v-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

/* Interne Verlinkung */
.zhh-verlinkung-row1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.zhh-verlinkung-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

/* ═══════════════════════════════════════════
   RESPONSIVE GRID OVERRIDES
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .zhh-cta-b {
    padding: 0 24px;
  }
  .zhh-cta-b-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .zhh-cta-b-img {
    display: none;
  }
  .zhh-cta-b-content {
    padding: 40px 24px;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
  .zhh-cta-c-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .zhh-faktenraster-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .zhh-schritte-v-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .zhh-verlinkung-row1 {
    grid-template-columns: 1fr;
  }
  .zhh-verlinkung-row2 {
    grid-template-columns: 1fr 1fr;
  }

  /* Existing grids */
  .hero-inner {
    grid-template-columns: 1fr !important;
  }
  .hero-card {
    display: none !important;
  }
  .hero h1 {
    font-size: 38px !important;
    letter-spacing: -1.5px !important;
  }
  .hero {
    padding: 56px 24px 48px !important;
  }
  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .qi-split {
    grid-template-columns: 1fr !important;
  }
  .article-wrap {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .article-sidebar {
    position: static !important;
    top: auto !important;
  }
  .trustbar-grid {
    grid-template-columns: 1fr !important;
  }
  .tb {
    border-right: none !important;
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
  }
  .card-grid-3 {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px !important;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .card-grid-3::-webkit-scrollbar { display: none; }
  .card-grid-3 .img-card {
    flex: 0 0 320px !important;
    scroll-snap-align: start;
  }
  .zhh-modell-arrows { display: none; }
  .versus-grid {
    grid-template-columns: 1fr !important;
  }
  .calc-grid {
    grid-template-columns: 1fr !important;
  }
  .faq-split {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .faq-left h2 {
    font-size: 32px;
  }
  .steps-h {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
  .steps-h::before {
    display: none;
  }
  .sh-item {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    text-align: left;
    padding: 0;
  }
  .sh-num {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .sh-body {
    display: contents !important;
  }
  .sh-title {
    flex: 1;
    min-width: 0;
    margin-bottom: 0;
  }
  .sh-text {
    flex-basis: 100%;
    max-width: 100%;
    padding-left: calc(56px + 14px);
  }
  .reviews-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .rv-span-row {
    grid-row: span 1 !important;
  }
  .rv-span-col {
    grid-column: span 1 !important;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .toc-grid {
    grid-template-columns: 1fr !important;
  }
  .author-box {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto auto auto;
  }
  .author-divider {
    width: auto !important;
    height: 1px !important;
    margin: 0 24px !important;
  }
  .author-right {
    border-left: none !important;
    border-top: 1px solid var(--border);
    padding: 16px 24px;
  }
  .section,
  .internal-section {
    padding: 60px 24px !important;
  }
  h2.st,
  h2.st-white,
  .reviews-section-title {
    font-size: 32px !important;
    letter-spacing: 0px !important;
  }
  .zhh-faktenleiste-bar {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 767px) {
  .zhh-fakt-row {
    grid-template-columns: 1fr !important;
    border-bottom: none !important;
  }
  .zhh-fakt-cell {
    padding: 24px 0 !important;
    border-right: none !important;
    border-bottom: 1px solid var(--border) !important;
  }
  /* Modellkacheln – horizontal swipe on mobile */
  .card-grid-3 {
    margin-left: -24px !important;
    margin-right: -24px !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
  .card-grid-3 .img-card {
    flex: 0 0 82vw !important;
    max-width: 320px !important;
  }
  /* Arrows + dots – mobile only */
  .zhh-modell-arrows {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
  }
  .zhh-modell-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--ink);
    cursor: pointer;
    transition: background 0.18s, border-color 0.18s, color 0.18s;
    flex-shrink: 0;
  }
  .zhh-modell-arrow:hover {
    background: var(--em);
    border-color: var(--em);
    color: white;
  }
  .zhh-modell-arrow svg {
    flex: none;
    width: 16px;
    height: 16px;
  }
  .zhh-modell-dots {
    display: flex;
    gap: 6px;
    align-items: center;
  }
  .zhh-modell-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: var(--border);
    padding: 0;
    cursor: pointer;
    transition: background 0.18s, transform 0.18s;
  }
  .zhh-modell-dot.active {
    background: var(--em);
    transform: scale(1.3);
  }
  .zhh-form-grid {
    grid-template-columns: 1fr !important;
  }
  .zhh-verlinkung-row1 {
    grid-template-columns: 1fr !important;
  }
  .zhh-verlinkung-row2 {
    grid-template-columns: 1fr !important;
  }
  .hero h1 {
    font-size: 30px !important;
    letter-spacing: -1px !important;
  }
  .hero {
    padding: 40px 20px 36px !important;
  }
  .hero-checks {
    flex-direction: column;
    gap: 8px;
  }
  .hero-sub {
    font-size: 14px;
  }
  .reviews-grid {
    grid-template-columns: 1fr !important;
  }
  .footer-grid {
    grid-template-columns: 1fr !important;
  }
  .f-bottom {
    flex-direction: column;
    gap: 6px;
  }
  .trustbar {
    padding: 36px 20px !important;
  }
  .trustbar-title {
    font-size: 24px !important;
  }
  .section,
  .internal-section {
    padding: 48px 20px !important;
  }
  h2.st,
  h2.st-white,
  .reviews-section-title {
    font-size: 40px !important;
    font-weight: 800 !important;
    color: var(--ink);
    letter-spacing: 0px !important;
  }
  .s-sub {
    font-size: 15px;
    margin-bottom: 32px;
  }
  .zhh-blog-centered {
    max-width: 100%;
  }
  .data-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .data-table {
    min-width: 520px;
  }
  .calc-result {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .calc-result-val {
    font-size: 28px;
  }
  .cta-banner {
    padding: 48px 20px !important;
  }
  .cta-inner h2 {
    font-size: 28px !important;
  }
  .cta-checks {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .zhh-faktenleiste-bar {
    grid-template-columns: 1fr !important;
  }
  nav {
    padding: 0 16px !important;
    gap: 8px !important;
  }
  .nav-link {
    display: none !important;
  }
  .nav-phone {
    display: none !important;
  }
  .zhh-cta-b h2 {
    font-size: 28px !important;
  }
  .zhh-cta-c h2 {
    font-size: 26px !important;
    letter-spacing: 0px !important;
  }
  .author-meta-wrap {
    flex-wrap: wrap;
    gap: 12px;
  }
}

/* ── CF7 Integration ── */
.zhh-cf7-wrap .wpcf7-form input[type="text"],
.zhh-cf7-wrap .wpcf7-form input[type="email"],
.zhh-cf7-wrap .wpcf7-form input[type="tel"],
.zhh-cf7-wrap .wpcf7-form input[type="number"],
.zhh-cf7-wrap .wpcf7-form textarea,
.zhh-cf7-wrap .wpcf7-form select {
  width: 100% !important;
  border: 1.5px solid var(--border) !important;
  border-radius: var(--r) !important;
  padding: 13px 16px !important;
  font-size: 15px !important;
  font-family: inherit !important;
  color: var(--text) !important;
  background: var(--white) !important;
  outline: none !important;
  transition: border-color 0.15s !important;
  box-sizing: border-box !important;
  box-shadow: none !important;
}
.zhh-cf7-wrap .wpcf7-form input:focus,
.zhh-cf7-wrap .wpcf7-form textarea:focus {
  border-color: var(--em) !important;
}
.zhh-cf7-wrap .wpcf7-form input[type="submit"] {
  width: 100% !important;
  background: var(--em) !important;
  color: white !important;
  border: none !important;
  padding: 17px !important;
  border-radius: var(--r) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  font-family: inherit !important;
  box-shadow: 0 4px 20px rgba(22, 107, 70, 0.35) !important;
  transition: background 0.15s !important;
  margin-top: 8px !important;
  white-space: normal;
}
.zhh-cf7-wrap .wpcf7-form input[type="submit"]:hover {
  background: var(--em-hover) !important;
}
.zhh-cf7-wrap .wpcf7-not-valid-tip {
  color: #dc2626 !important;
  font-size: 12px !important;
  margin-top: 4px !important;
}
.zhh-cf7-wrap .wpcf7-response-output {
  border-radius: var(--r) !important;
  padding: 12px 16px !important;
  font-size: 14px !important;
  margin-top: 16px !important;
  border: none !important;
}
.zhh-cf7-wrap .wpcf7-mail-sent-ok {
  background: #f0fdf4 !important;
  color: #166534 !important;
  border-left: 3px solid var(--em) !important;
}
.zhh-cf7-wrap .wpcf7-mail-sent-ng,
.zhh-cf7-wrap .wpcf7-validation-errors {
  background: #fef2f2 !important;
  color: #dc2626 !important;
  border-left: 3px solid #dc2626 !important;
}
@media (max-width: 767px) {
  .zhh-cf7-wrap .wpcf7-form .zhh-cf7-grid,
  .zhh-cf7-wrap .wpcf7-form .zhh-form-grid {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
  }
  .zhh-cf7-wrap .wpcf7-form p {
    width: 100% !important;
    float: none !important;
    clear: both !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .zhh-cf7-wrap .wpcf7-form p label {
    display: block !important;
    width: 100% !important;
    margin-right: 0 !important;
  }
  .zhh-cf7-wrap .wpcf7-form p .wpcf7-form-control-wrap {
    display: block !important;
    width: 100% !important;
  }
}

/* ═══════════════════════════════════════════
   PFLEGEGRAD ANLEITUNG
═══════════════════════════════════════════ */

/* ── Wrapper ── */
.zhh-guide-section {
  padding: 0;
}

/* ── Header ── */
.zhh-guide-header {
  background: var(--ink);
  border-radius: var(--r-lg);
  padding: 56px 48px;
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--em);
}
.zhh-guide-header::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: var(--em);
  opacity: 0.05;
  pointer-events: none;
}
.zhh-guide-header-headline {
  font-size: 40px;
  font-weight: 800;
  color: #fff !important;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 14px;
  position: relative;
}
.zhh-guide-header-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 640px;
  margin: 0 auto 24px;
  line-height: 1.75;
  position: relative;
}
.zhh-guide-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  position: relative;
}
.zhh-guide-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 1);;
}
.zhh-guide-meta-item svg {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 1);;
}

/* ── Steps Grid ── */
.zhh-guide-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* ── Step Card ── */
.zhh-guide-step-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--em);
  display: flex;
  flex-direction: column;
}
.zhh-guide-step-card:last-child {
  grid-column: 1 / -1;
}

/* Card Header */
.zhh-guide-step-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.zhh-guide-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--em);
  color: white;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(22, 107, 70, 0.3);
}
.zhh-guide-step-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.5px;
  line-height: 1.25;
  margin: 0;
}

/* ── Step Body Typography ── */
.zhh-guide-step-body {
  flex: 1;
}
.zhh-guide-step-body h3 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--em);
  margin: 18px 0 10px;
}
.zhh-guide-step-body h3:first-child {
  margin-top: 0;
}
.zhh-guide-step-body p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 12px;
}
.zhh-guide-step-body p:last-child {
  margin-bottom: 0;
}
.zhh-guide-step-body strong {
  color: var(--ink);
  font-weight: 700;
}
.zhh-guide-step-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}
.zhh-guide-step-body ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 9px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
}
.zhh-guide-step-body ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--em);
  font-weight: 800;
  font-size: 13px;
}
.zhh-guide-step-body ul li:last-child {
  margin-bottom: 0;
}

/* ── Info / Tip Boxes ── */
.zhh-guide-box {
  padding: 16px 20px;
  border-radius: var(--r);
  margin-top: 20px;
  font-size: 13px;
}
.zhh-guide-box p {
  margin: 0;
  color: var(--text-mid);
  line-height: 1.7;
  font-size: 13px;
}
.zhh-guide-box-info {
  background: var(--surface);
  border-left: 4px solid var(--ink);
}
.zhh-guide-box-tip {
  background: var(--em-tint);
  border-left: 4px solid var(--em);
}
.zhh-guide-box-title {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.zhh-guide-box-info .zhh-guide-box-title {
  color: var(--ink);
}
.zhh-guide-box-tip .zhh-guide-box-title {
  color: var(--em);
}

/* ── Sub-Cards (innerhalb Step-Body via WYSIWYG) ── */
.zhh-guide-sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}
.zhh-guide-sub-card {
  background: var(--surface);
  padding: 16px 18px;
  border-radius: var(--r);
  border: 1px solid var(--border);
}
.zhh-guide-sub-icon {
  font-size: 20px;
  margin-bottom: 6px;
  display: block;
}
.zhh-guide-sub-card h4 {
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -0.2px;
}
.zhh-guide-sub-card p {
  font-size: 13px;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.65;
}

/* ── Contact Footer ── */
.zhh-guide-footer {
  background: var(--ink);
  border-radius: var(--r-lg);
  padding: 48px 40px;
  text-align: center;
  margin-top: 28px;
}
.zhh-guide-footer h3 {
  font-size: 26px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.5px;
  margin: 0 0 12px;
  line-height: 1.2;
}
.zhh-guide-footer p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  margin-bottom: 4px;
}
.zhh-guide-phone {
  font-size: 32px;
  font-weight: 800;
  color: var(--em-light);
  display: block;
  margin-top: 16px;
  letter-spacing: -1px;
  text-decoration: none;
  transition: color 0.15s;
}
.zhh-guide-phone:hover {
  color: white;
}
.zhh-guide-footer-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 1); !important;
  margin-top: 16px !important;
}

/* ── Responsive: Tablet ≤ 1024px ── */
@media (max-width: 1024px) {
  .zhh-guide-header {
    padding: 40px 28px;
  }
  .zhh-guide-header-headline {
    font-size: 32px;
    letter-spacing: -1px;
  }
  .zhh-guide-steps-grid {
    grid-template-columns: 1fr;
  }
  .zhh-guide-step-card:last-child {
    grid-column: auto;
  }
}

/* ── Responsive: Mobil ≤ 767px ── */
@media (max-width: 767px) {
  .zhh-guide-header {
    padding: 32px 20px;
  }
  .zhh-guide-header-headline {
    font-size: 26px;
    letter-spacing: -0.5px;
  }
  .zhh-guide-header-sub {
    font-size: 15px;
  }
  .zhh-guide-meta {
    gap: 12px;
  }
  .zhh-guide-step-card {
    padding: 24px 20px;
  }
  .zhh-guide-step-title {
    font-size: 17px;
  }
  .zhh-guide-sub-grid {
    grid-template-columns: 1fr;
  }
  .zhh-guide-footer {
    padding: 36px 20px;
  }
  .zhh-guide-footer h3 {
    font-size: 20px;
  }
  .zhh-guide-phone {
    font-size: 24px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   KRANKENKASSEN-ÜBERSICHT  (.zhh-kassen-*)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Wrapper & Container ── */
.zhh-kassen-wrap {
  width: 100%;
  overflow-x: hidden;
  background: var(--surface);
}
.zhh-kassen-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.zhh-kassen-body {
  padding-bottom: 64px;
}

/* ── Hero ── */
.zhh-kassen-hero {
  background: var(--ink);
  border-bottom: 4px solid var(--em);
  padding: 80px 0 100px;
  text-align: center;
  color: #fff;
}
.zhh-kassen-headline {
  font-size: 40px;
  font-weight: 800;
  color: #fff !important;
  letter-spacing: -1px;
  line-height: 1.15;
  margin: 0 0 16px;
}
.zhh-kassen-sub {
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8) !important;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── Search Box (floats up over hero) ── */
.zhh-kassen-search-wrap {
  margin-top: -52px;
  position: relative;
  z-index: 20;
  margin-bottom: 40px;
}
.zhh-kassen-search-box {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px 32px;
  max-width: 820px;
  margin: 0 auto;
  border: 1px solid var(--border);
}
.zhh-kassen-search-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  border: none;
  border-radius: var(--r);
  background: #f7f7f6;
  padding: 0 20px;
  transition: background 0.2s;
}
.zhh-kassen-search-inner:focus-within {
  background: #fff;
  box-shadow: 0 0 0 3px var(--em-tint);
}
.zhh-kassen-search-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: var(--em);
}
.zhh-kassen-input {
  flex: 1;
  padding: 16px 0;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  outline: none;
  min-width: 0;
}
.zhh-kassen-input:focus {
  outline: none;
}
.zhh-kassen-count {
  margin-top: 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
}

/* ── No Results State ── */
.zhh-kassen-no-results {
  display: none;
  text-align: center;
  padding: 56px 24px;
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 32px;
}
.zhh-kassen-no-results.show {
  display: block;
}
.zhh-kassen-no-icon {
  font-size: 2.5rem;
  opacity: 0.45;
  display: block;
  margin-bottom: 12px;
}
.zhh-kassen-no-results h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 8px;
}
.zhh-kassen-no-results p {
  font-size: 14px;
  color: var(--text-mid);
  margin: 0;
}

/* ── Expandable Grid Wrapper ── */
.zhh-kassen-grid-wrap {
  position: relative;
  max-height: 580px;
  overflow: hidden;
  transition: max-height 0.85s ease-in-out;
}
.zhh-kassen-grid-wrap.expanded {
  max-height: 99999px;
  overflow: visible;
}

/* fade-out overlay */
.zhh-kassen-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 220px;
  background: linear-gradient(
    to bottom,
    rgba(245, 246, 244, 0) 0%,
    var(--surface) 100%
  );
  pointer-events: none;
  z-index: 5;
  transition: opacity 0.3s ease;
}
.zhh-kassen-grid-wrap.expanded .zhh-kassen-overlay {
  opacity: 0;
  pointer-events: none;
}

/* expand button container */
.zhh-kassen-expand-wrap {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
  transition: opacity 0.3s ease;
}
.zhh-kassen-grid-wrap.expanded .zhh-kassen-expand-wrap {
  opacity: 0;
  pointer-events: none;
}

.zhh-kassen-expand-btn {
  display: inline-block;
  background: #fff;
  color: var(--em);
  border: 2px solid var(--em);
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}
.zhh-kassen-expand-btn:hover {
  background: var(--em);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Card Grid ── */
.zhh-kassen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  padding-bottom: 20px;
}

/* ── Individual Card ── */
.zhh-kassen-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
}
.zhh-kassen-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--em);
}
.zhh-kassen-card.zhh-kassen-hidden {
  display: none;
}

.zhh-kassen-card-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}
.zhh-kassen-card-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}
.zhh-kassen-card-btn {
  display: inline-block;
  background: var(--em);
  color: #fff;
  padding: 11px 20px;
  border-radius: var(--r);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.2px;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(var(--em-rgb, 34, 139, 90), 0.25);
}
.zhh-kassen-card-btn:hover {
  background: var(--em-dark, #1a7a47);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(var(--em-rgb, 34, 139, 90), 0.35);
  color: #fff;
}

/* ── Responsive: Tablet ≤ 1024px ── */
@media (max-width: 1024px) {
  .zhh-kassen-hero {
    padding: 60px 0 80px;
  }
  .zhh-kassen-headline {
    font-size: 32px;
  }
  .zhh-kassen-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   TREPPENLIFT KONFIGURATOR  (.zhh-kfg-*)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Wrapper ── */
.zhh-kfg-wrap {
  width: 100%;
  background: var(--surface);
  padding: 40px 20px 80px;
  box-sizing: border-box;
}

/* ── Header ── */
.zhh-kfg-header {
  text-align: center;
  margin-bottom: 48px;
}
.zhh-kfg-trust-strip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--em-tint);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 40px;
  padding: 7px 18px;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--em);
  letter-spacing: 0.02em;
}
.zhh-kfg-trust-strip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--em);
  box-shadow: 0 0 0 3px var(--em-tint);
  animation: zhh-pulse-dot 2.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes zhh-pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 3px var(--em-tint);
  }
  50% {
    box-shadow: 0 0 0 6px var(--em-tint);
  }
}
.zhh-kfg-headline {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--ink) !important;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 14px;
}
.zhh-kfg-subheadline {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-mid);
  max-width: 580px;
  margin: 0 auto 24px;
}
.zhh-kfg-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.zhh-kfg-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
}
.zhh-kfg-badge-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--em-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* ── Two-column layout ── */
.zhh-kfg-grid {
  display: grid;
  grid-template-columns: 1.75fr 1.25fr;
  gap: 32px;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}

/* ── Left column ── */
.zhh-kfg-left {
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  padding: 36px;
  box-shadow: var(--shadow);
}

/* Step headings */
.zhh-kfg-step-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 18px;
  letter-spacing: -0.2px;
}
.zhh-kfg-step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--em);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.zhh-kfg-divider {
  margin: 28px 0 32px;
  border: none;
  border-top: 1.5px dashed var(--border);
}
.zhh-kfg-section-block {
  animation: zhh-slide-reveal 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  padding-top: 4px;
}
@keyframes zhh-slide-reveal {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.99);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.zhh-kfg-sub-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-mid);
  margin-bottom: 12px;
}

/* ── Option cards ── */
.zhh-kfg-card-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.zhh-kfg-option-card {
  display: flex;
  align-items: center;
  padding: 16px 18px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s,
    background 0.2s;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.zhh-kfg-option-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--em), transparent);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}
.zhh-kfg-option-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--em);
  background: var(--em-tint);
}
.zhh-kfg-option-card:hover::before {
  transform: scaleX(1);
}

/* Custom radio / checkbox */
.zhh-kfg-radio,
.zhh-kfg-extra-check {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 14px;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s,
    box-shadow 0.2s;
  background: #fff;
}
.zhh-kfg-extra-check {
  border-radius: 5px;
}
.zhh-kfg-radio:checked,
.zhh-kfg-extra-check:checked {
  border-color: var(--em);
  background: var(--em);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
  background-size: 78%;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 0 0 4px var(--em-tint);
}

/* Selected card state via :has */
.zhh-kfg-option-card:has(input:checked) {
  border-color: var(--em);
  background: var(--em-tint);
  box-shadow:
    0 0 0 3px var(--em-tint),
    var(--shadow);
  transform: translateY(-1px);
}
.zhh-kfg-option-card:has(input:checked)::before {
  transform: scaleX(1);
}
.zhh-kfg-option-card:has(input:checked) .zhh-kfg-price-badge {
  background: var(--em);
  color: #fff;
  border-color: var(--em);
}

/* Card text */
.zhh-kfg-card-content {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.zhh-kfg-card-text {
  flex: 1;
}
.zhh-kfg-opt-title {
  display: block;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 3px;
}
.zhh-kfg-opt-desc {
  display: block;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.4;
}

/* Badges inside cards */
.zhh-kfg-price-badge {
  background: var(--em-tint);
  color: var(--em);
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  flex-shrink: 0;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition:
    background 0.2s,
    color 0.2s;
}
.zhh-kfg-discount-badge {
  background: rgba(212, 169, 82, 0.12);
  color: #a07a35;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  flex-shrink: 0;
  border: 1px solid rgba(212, 169, 82, 0.25);
}

/* Number input */
.zhh-kfg-input-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.zhh-kfg-number-input {
  width: 64px;
  padding: 10px;
  text-align: center;
  border: 2px solid var(--border);
  border-radius: var(--r);
  font-size: 17px;
  font-weight: 700;
  color: var(--em);
  background: #fff;
  outline: none;
  flex-shrink: 0;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.zhh-kfg-number-input:focus {
  border-color: var(--em);
  box-shadow: 0 0 0 3px var(--em-tint);
}

/* ── Contact form ── */
.zhh-kfg-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-mid);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 24px;
  transition: color 0.2s;
}
.zhh-kfg-back-link:hover {
  color: var(--em);
}
.zhh-kfg-form-intro {
  margin-bottom: 24px;
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.6;
}
.zhh-kfg-form-group {
  margin-bottom: 16px;
}
.zhh-kfg-form-label {
  display: block;
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 7px;
}
.zhh-kfg-form-input,
.zhh-kfg-form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  box-sizing: border-box;
}
.zhh-kfg-form-input:focus,
.zhh-kfg-form-textarea:focus {
  border-color: var(--em);
  background: var(--em-tint);
  box-shadow: 0 0 0 3px var(--em-tint);
}
.zhh-kfg-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.zhh-kfg-upload-box {
  border: 2px dashed var(--border);
  padding: 24px;
  text-align: center;
  border-radius: var(--r);
  background: var(--em-tint);
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.zhh-kfg-upload-box:hover {
  border-color: var(--em);
}
.zhh-kfg-upload-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 6px;
}
.zhh-kfg-upload-label {
  display: block;
  color: var(--em);
  font-weight: 700;
  font-size: 14px;
}
.zhh-kfg-upload-hint {
  display: block;
  color: var(--text-mid);
  font-size: 12px;
  margin-top: 4px;
}
.zhh-kfg-disclaimer {
  background: #fffbf0;
  border-left: 3px solid #d4a952;
  padding: 14px 16px;
  border-radius: var(--r);
  font-size: 13px;
  line-height: 1.6;
  color: #5a4a1f;
  margin: 20px 0;
}
.zhh-kfg-privacy {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--em-tint);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.zhh-kfg-privacy:hover {
  border-color: var(--em);
}
.zhh-kfg-privacy input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid var(--border);
  border-radius: 5px;
  cursor: pointer;
  margin-top: 1px;
  transition:
    border-color 0.2s,
    background 0.2s;
  background: #fff;
}
.zhh-kfg-privacy input[type="checkbox"]:checked {
  border-color: var(--em);
  background: var(--em);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
  background-size: 78%;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 0 0 3px var(--em-tint);
}
.zhh-kfg-privacy-text {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.55;
}
.zhh-kfg-privacy-text strong {
  color: var(--ink);
}
.zhh-kfg-privacy-text a {
  color: var(--em);
  text-decoration: underline;
}
.zhh-kfg-form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px 24px;
  background: var(--em);
  color: #fff;
  border: none;
  border-radius: var(--r);
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  margin-top: 8px;
}
.zhh-kfg-form-submit:hover {
  background: var(--em-dark, #1a7a47);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.zhh-kfg-form-note {
  font-size: 12px;
  color: var(--text-mid);
  text-align: center;
  margin-top: 10px;
}

/* ── Right column: dark summary card ── */
.zhh-kfg-summary-wrap {
  position: sticky;
  top: 24px;
}
.zhh-kfg-summary {
  background: var(--ink);
  border-radius: var(--r-lg);
  padding: 32px;
  color: #fff;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.25),
    0 4px 16px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  position: relative;
}
/* decorative glow blobs */
.zhh-kfg-summary::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(78, 204, 163, 0.18) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.zhh-kfg-summary::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(78, 204, 163, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.zhh-kfg-summary-inner {
  position: relative;
  z-index: 1;
}
.zhh-kfg-summary-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.zhh-kfg-benefits {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r);
  padding: 14px 16px;
  margin-bottom: 20px;
}
.zhh-kfg-benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 7px;
  line-height: 1.3;
}
.zhh-kfg-benefit:last-child {
  margin-bottom: 0;
}
.zhh-kfg-line-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
}
.zhh-kfg-summary-name {
  color: rgba(255, 255, 255, 1);;
  font-size: 14px;
}
.zhh-kfg-summary-base {
  color: #fff;
  font-weight: 700;
}
.zhh-kfg-extra-item {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  padding: 6px 10px;
  margin-bottom: 5px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  border-left: 2px solid rgba(78, 204, 163, 0.5);
}
.zhh-kfg-grant-item {
  color: #4ecca3;
  font-weight: 700;
  font-size: 15px;
  padding: 10px 0;
  margin: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
}
.zhh-kfg-total-block {
  background: linear-gradient(
    135deg,
    rgba(78, 204, 163, 0.2) 0%,
    rgba(78, 204, 163, 0.1) 100%
  );
  border-radius: var(--r);
  padding: 20px 18px;
  margin-top: 16px;
  border: 1.5px solid rgba(78, 204, 163, 0.3);
  position: relative;
  overflow: hidden;
}
.zhh-kfg-total-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #4ecca3, transparent);
}
.zhh-kfg-total-label {
  font-size: 11px;
  font-weight: 700;
  color: #4ecca3;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}
/* total-price: matched via attribute selector */
.zhh-kfg-summary [id$="-total-price"] {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  display: block;
}
.zhh-kfg-price-request {
  font-size: 16px;
  color: #fbbf24;
  font-weight: 700;
}
.zhh-kfg-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px 24px;
  background: var(--em);
  color: #fff;
  border: none;
  border-radius: var(--r);
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  margin-top: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.zhh-kfg-cta-btn:hover {
  background: var(--em-dark, #1a7a47);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.zhh-kfg-cta-arrow {
  font-style: normal;
  transition: transform 0.2s;
}
.zhh-kfg-cta-btn:hover .zhh-kfg-cta-arrow,
.zhh-kfg-form-submit:hover .zhh-kfg-cta-arrow {
  transform: translateX(4px);
}
.zhh-kfg-secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 12px;
  color: rgba(255, 255, 255, 1);
  margin-top: 12px;
}

/* ── Success screen ── */
.zhh-kfg-success {
  text-align: center;
  padding: 48px 20px;
}
.zhh-kfg-success-icon {
  width: 72px;
  height: 72px;
  background: var(--em);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.zhh-kfg-success h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
}
.zhh-kfg-success p {
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── Responsive: ≤ 880px → single column ── */
@media (max-width: 880px) {
  .zhh-kfg-grid {
    grid-template-columns: 1fr;
  }
  .zhh-kfg-summary-wrap {
    position: static;
  }
  .zhh-kfg-form-grid {
    grid-template-columns: 1fr;
  }
  .zhh-kfg-headline {
    font-size: 1.8rem;
  }
  .zhh-kfg-left {
    padding: 24px 18px;
  }
  .zhh-kfg-card-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .zhh-kfg-price-badge {
    margin-left: 34px;
  }
}
@media (max-width: 767px) {
  .zhh-kfg-wrap {
    padding: 24px 16px 60px;
  }
}

/* ── Responsive: Mobil ≤ 767px ── */
@media (max-width: 767px) {
  .zhh-kassen-hero {
    padding: 48px 0 72px;
  }
  .zhh-kassen-headline {
    font-size: 26px;
    letter-spacing: -0.5px;
  }
  .zhh-kassen-sub {
    font-size: 15px;
  }
  .zhh-kassen-search-box {
    padding: 20px;
  }
  .zhh-kassen-grid {
    grid-template-columns: 1fr;
  }
  .zhh-kassen-card {
    padding: 20px 18px;
  }
}

/* =========================================================
   TREPPENLIFT RECHNER  (.zhh-rchn-*)
   ========================================================= */

/* Scope wrapper */
.zhh-rchn-scope {
  background: #fafafa;
  padding: 40px 0;
  width: 100%;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
}
.zhh-rchn-scope * {
  box-sizing: border-box;
}

/* Two-column grid */
.zhh-rchn-grid {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Left info column ─────────────────────────────────── */
.zhh-rchn-info-col {
  padding: 20px 0;
}

.zhh-rchn-badge {
  display: inline-block;
  background: #e0f2fe;
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.zhh-rchn-headline {
  font-size: 32px;
  line-height: 1.25;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 15px;
}

.zhh-rchn-subline {
  font-size: 16px;
  color: #666;
  margin-bottom: 25px;
  font-weight: 400;
}

.zhh-rchn-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
}

.zhh-rchn-benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}

.zhh-rchn-check {
  color: var(--em);
  font-weight: 800;
  font-size: 18px;
  margin-top: -2px;
  flex-shrink: 0;
}

/* ── Right calc column ───────────────────────────────── */
.zhh-rchn-calc-col {
  width: 100%;
  min-width: 0;
}

.zhh-rchn-card {
  background: #fff;
  border-radius: 16px;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.1),
    0 5px 15px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(var(--em-rgb, 238, 124, 118), 0.25);
}

/* Calculator header */
.zhh-rchn-calc-header {
  background: var(--ink);
  color: #fff;
  padding: 25px;
  text-align: center;
  border-bottom: 4px solid var(--em);
}
.zhh-rchn-calc-header h2 {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 4px;
  color: #fff !important;
}
.zhh-rchn-calc-header p {
  opacity: 0.9;
  font-size: 0.95rem;
  font-weight: 300;
  margin: 0;
  color: #fff !important;
}

/* Progress */
.zhh-rchn-progress-wrap {
  padding: 15px 30px;
  background: #fff;
  border-bottom: 1px solid #eee;
}
.zhh-rchn-progress-bar {
  height: 6px;
  background: #eef2f5;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 8px;
}
.zhh-rchn-progress-fill {
  height: 100%;
  background: var(--em);
  width: 0;
  transition: width 0.4s ease;
}
.zhh-rchn-progress-text {
  text-align: right;
  font-size: 0.8rem;
  font-weight: 600;
  color: #999;
  margin: 0;
}

/* Main step area */
.zhh-rchn-main {
  padding: 40px 30px;
  flex-grow: 1;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
}

.zhh-rchn-step-inner {
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
}

/* Step visibility */
.zhh-rchn-step {
  display: none;
  animation: zhrchn-fade 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  width: 100%;
}
.zhh-rchn-step.active {
  display: block;
}

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

.zhh-rchn-step h3 {
  font-size: 22px;
  text-align: center;
  margin-bottom: 30px;
  color: var(--ink, #162540) !important;
  font-weight: 800;
}

/* Option buttons */
.zhh-rchn-opt-btn {
  width: 100% !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 20px 25px !important;
  margin: 12px 0 !important;
  border-radius: 12px !important;
  border: 1px solid #e0e0e0 !important;
  background: #fff !important;
  cursor: pointer !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  color: var(--ink, #162540) !important;
  transition: all 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02) !important;
  font-family: inherit !important;
  text-decoration: none !important;
}
.zhh-rchn-opt-btn:hover {
  border-color: var(--em);
  background: #fff9f9;
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(238, 124, 118, 0.2);
}

/* Back button */
.zhh-rchn-back-btn {
  background: none !important;
  border: none !important;
  color: #999 !important;
  font-weight: 600;
  cursor: pointer;
  padding: 10px;
  font-size: 0.9rem;
  display: block;
  margin: 15px auto;
  transition: color 0.2s;
  font-family: inherit;
}
.zhh-rchn-back-btn:hover {
  color: var(--ink);
}

/* CTA / primary buttons */
.zhh-rchn-cta-btn,
.zhh-rchn-submit-btn {
  width: 100% !important;
  padding: 18px 24px !important;
  background: var(--em, #166b46) !important;
  color: #fff !important;
  border: none !important;
  outline: none !important;
  border-radius: 50px !important;
  font-weight: 800 !important;
  font-size: 18px !important;
  cursor: pointer !important;
  margin-top: 25px !important;
  text-align: center !important;
  box-shadow: 0 5px 15px rgba(238, 124, 118, 0.4) !important;
  transition: all 0.3s ease;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  font-family: inherit !important;
}
.zhh-rchn-cta-btn:hover,
.zhh-rchn-submit-btn:hover {
  background: var(--em-tint, #d66a65);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(238, 124, 118, 0.6);
}
.zhh-rchn-cta-sm {
  width: auto;
  padding: 12px 35px;
  margin-left: auto;
  margin-right: auto;
}

/* Result box */
.zhh-rchn-result-box {
  background: #fcfcfc;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  margin-bottom: 25px;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.02);
}
.zhh-rchn-result-label {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
  letter-spacing: 1px;
  margin: 0;
}
.zhh-rchn-price-tag {
  font-size: 38px;
  color: var(--ink);
  font-weight: 800;
  margin: 10px 0;
  line-height: 1.2;
}
.zhh-rchn-result-sub {
  font-size: 14px;
  opacity: 0.8;
  color: #666;
  margin: 0;
}

/* Grant info box */
.zhh-rchn-grant-box {
  background: #f0fdf4;
  border-left: 4px solid #4caf50;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 24px;
  font-size: 0.95rem;
  color: #166534;
}
.zhh-rchn-grant-box p {
  margin: 0;
}

/* Form */
.zhh-rchn-form-title {
  font-size: 22px;
  text-align: center;
  margin: 0 0 10px;
  color: var(--ink);
  font-weight: 800;
}
.zhh-rchn-form-sub {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 30px;
}
.zhh-rchn-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.zhh-rchn-form-group {
  margin-bottom: 20px;
}

.zhh-rchn-label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--ink);
}
.zhh-rchn-input {
  width: 100%;
  padding: 14px;
  border: 2px solid #eee;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  background: #fcfcfc;
  transition: border-color 0.3s;
  color: var(--ink);
}
.zhh-rchn-input:focus {
  border-color: var(--ink);
  outline: none;
  background: #fff;
}

/* Checkbox */
.zhh-rchn-checkbox-wrap {
  margin: 25px 0;
}
.zhh-rchn-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  cursor: pointer;
  color: #666;
}
.zhh-rchn-checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.zhh-rchn-checkmark {
  min-width: 22px;
  height: 22px;
  border: 2px solid #ddd;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  background: #fff;
  transition: all 0.2s;
  flex-shrink: 0;
}
.zhh-rchn-checkbox-label input:checked + .zhh-rchn-checkmark {
  background: #4caf50;
  border-color: #4caf50;
}
.zhh-rchn-checkbox-label input:checked + .zhh-rchn-checkmark::after {
  content: "✓";
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}
.zhh-rchn-checkbox-label a {
  color: var(--ink);
  text-decoration: underline;
}

/* Success screen */
.zhh-rchn-success {
  display: none;
  background: #f0fdf4;
  border: 1px solid #4caf50;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
}
.zhh-rchn-success h3 {
  color: #4caf50;
  margin-bottom: 15px;
  margin-top: 0;
}
.zhh-rchn-success p {
  color: #555;
}

/* Footer */
.zhh-rchn-footer {
  padding: 15px;
  text-align: center;
  font-size: 12px;
  color: #aaa;
  border-top: 1px solid #f0f0f0;
}

/* Trust bar */
.zhh-rchn-trust-bar {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 25px;
  padding: 0 5px;
}
.zhh-rchn-trust-el {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  flex: 1;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}
.zhh-rchn-trust-el svg {
  color: #4caf50;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.zhh-rchn-trust-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.zhh-rchn-trust-sub {
  font-size: 11px;
  font-weight: 400;
  color: #888;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 950px) {
  .zhh-rchn-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .zhh-rchn-headline {
    font-size: 26px;
  }
  .zhh-rchn-trust-bar {
    flex-wrap: wrap;
  }
  .zhh-rchn-trust-el {
    width: 48%;
    margin-bottom: 10px;
  }
  .zhh-rchn-main {
    padding: 25px 20px;
  }
  .zhh-rchn-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* =========================================================
   ÜBER UNS  (.zhh-uuns-*)
   — Design gemäß ZHH-Guidelines
   ========================================================= */

.zhh-uuns-wrap {
  background: var(--white, #fff);
  color: var(--text, #111827);
  font-size: 16px;
  line-height: 1.75;
  width: 100%;
  font-family: inherit;
}
.zhh-uuns-wrap * {
  box-sizing: border-box;
}

/* ── Container ───────────────────────────────────────── */
.zhh-uuns-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── Section-Padding-Wrapper ─────────────────────────── */
.zhh-uuns-hero {
  background: var(--white, #fff);
  padding: 88px 0;
}
.zhh-uuns-mission-bg {
  background: var(--ink, #162540);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.zhh-uuns-values-section {
  background: var(--surface, #f5f5f3);
  padding: 88px 0;
}
.zhh-uuns-cta-section {
  background: var(--em, #166b46);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

/* Dekor-Kreise */
.zhh-uuns-mission-bg::before,
.zhh-uuns-cta-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  opacity: 0.04;
  pointer-events: none;
}
.zhh-uuns-mission-bg::before {
  background: var(--em, #166b46);
  top: -200px;
  right: -100px;
}
.zhh-uuns-cta-section::before {
  background: #fff;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
}

/* ── Eyebrow label ───────────────────────────────────── */
.zhh-uuns-eyebrow {
  display: block;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 3px !important;
  text-transform: uppercase;
  color: var(--em, #166b46);
  margin-bottom: 12px;
}
.zhh-uuns-eyebrow-white {
  color: rgba(255, 255, 255, 1);;
}

/* ── H2 – ZHH-Standard ───────────────────────────────── */
.zhh-uuns-wrap h2 {
  font-size: 40px !important;
  font-weight: 800 !important;
  letter-spacing: -2px !important;
  line-height: 1.1 !important;
  color: var(--ink, #162540) !important;
  margin-bottom: 20px !important;
  padding-bottom: 0 !important;
}
.zhh-uuns-wrap h2::after {
  display: none !important;
}

/* ── 1. Hero ─────────────────────────────────────────── */
.zhh-uuns-page-headline {
  font-size: 52px !important;
  font-weight: 800 !important;
  letter-spacing: -2.5px !important;
  line-height: 1.05 !important;
  text-align: center;
  color: var(--ink, #162540) !important;
  margin: 0 0 64px !important;
}

.zhh-uuns-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.zhh-uuns-hero-text p {
  font-size: 16px;
  color: var(--text-mid, #4b5563);
  line-height: 1.85;
  margin-bottom: 16px;
}
.zhh-uuns-hero-text p:last-child {
  margin-bottom: 0;
}

.zhh-uuns-hero-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r-lg, 16px);
  display: block;
}

.zhh-uuns-img-placeholder {
  background: var(--surface, #f5f5f3);
  aspect-ratio: 4/3;
  border-radius: var(--r-lg, 16px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted, #9ca3af);
  border: 1px solid var(--border, #e4e4e2);
  font-size: 14px;
}

/* ── 2. Mission (dark) ───────────────────────────────── */
.zhh-uuns-mission-box {
  text-align: center;
  position: relative;
  z-index: 1;
}

.zhh-uuns-mission-box h2 {
  color: #fff !important;
}

.zhh-uuns-mission-text {
  font-size: 20px;
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 1);;
  line-height: 1.75;
  font-style: italic;
}

/* ── 3. Werte ────────────────────────────────────────── */
.zhh-uuns-values-header {
  text-align: center;
  margin-bottom: 40px;
}
.zhh-uuns-values-header h2 {
  display: inline-block;
}

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

.zhh-uuns-card {
  background: var(--white, #fff);
  padding: 32px;
  border-radius: var(--r-lg, 16px);
  box-shadow: var(
    --shadow,
    0 1px 3px rgba(0, 0, 0, 0.05),
    0 4px 16px rgba(0, 0, 0, 0.06)
  );
  border: 1px solid var(--border, #e4e4e2);
}

.zhh-uuns-value-card h3 {
  color: var(--em, #166b46) !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  letter-spacing: -0.4px !important;
  line-height: 1.25 !important;
  margin-bottom: 10px !important;
}
.zhh-uuns-value-card p {
  font-size: 15px;
  color: var(--text-mid, #4b5563);
  line-height: 1.75;
  margin: 0;
}

/* ── 4. CTA (grüner Banner) ──────────────────────────── */
.zhh-uuns-cta-container {
  text-align: center;
  position: relative;
  z-index: 1;
}

.zhh-uuns-cta-card {
  max-width: 600px;
  margin: 0 auto;
}

.zhh-uuns-cta-card h2 {
  color: #fff !important;
  font-size: 42px !important;
  letter-spacing: -2px !important;
}

.zhh-uuns-cta-card p {
  color: rgba(255, 255, 255, 1); !important;
  font-size: 17px !important;
  line-height: 1.7 !important;
  margin-bottom: 32px !important;
}

/* btn-white Stil auf grünem BG */
.zhh-uuns-btn {
  display: inline-block !important;
  background: #fff !important;
  color: var(--em, #166b46) !important;
  text-decoration: none !important;
  padding: 16px 36px !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  border-radius: var(--r, 10px) !important;
  border: none !important;
  white-space: nowrap;
  line-height: 1;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.1s ease,
    box-shadow 0.15s ease;
}
.zhh-uuns-btn:hover {
  color: var(--em, #166b46) !important;
  text-decoration: none !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.22) !important;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .zhh-uuns-container {
    padding: 0 24px;
  }
  .zhh-uuns-hero,
  .zhh-uuns-mission-bg,
  .zhh-uuns-values-section {
    padding: 60px 0;
  }
  .zhh-uuns-cta-section {
    padding: 56px 0;
  }
}

@media (max-width: 767px) {
  .zhh-uuns-container {
    padding: 0 20px;
  }
  .zhh-uuns-hero,
  .zhh-uuns-mission-bg,
  .zhh-uuns-values-section {
    padding: 48px 0;
  }
  .zhh-uuns-cta-section {
    padding: 48px 0;
  }
  .zhh-uuns-hero-split,
  .zhh-uuns-values-grid {
    grid-template-columns: 1fr;
  }
  .zhh-uuns-page-headline {
    font-size: 36px !important;
    letter-spacing: -1.5px !important;
    margin-bottom: 40px !important;
  }
  .zhh-uuns-wrap h2 {
    font-size: 28px !important;
    letter-spacing: -1px !important;
  }
  .zhh-uuns-cta-card h2 {
    font-size: 30px !important;
  }
  .zhh-uuns-mission-text {
    font-size: 17px;
  }
  .zhh-uuns-card {
    padding: 24px;
  }
}

/* =========================================================
   CF7 INTEGRATION — Widget-scoped styles
   ========================================================= */

/* Konfigurator CF7 wrapper */
.zhh-kfg-cf7-wrap .wpcf7 {
  margin: 0;
}
.zhh-kfg-cf7-wrap .wpcf7-form p {
  margin-bottom: 16px;
}
.zhh-kfg-cf7-wrap .wpcf7-form input[type="text"],
.zhh-kfg-cf7-wrap .wpcf7-form input[type="email"],
.zhh-kfg-cf7-wrap .wpcf7-form input[type="tel"],
.zhh-kfg-cf7-wrap .wpcf7-form textarea,
.zhh-kfg-cf7-wrap .wpcf7-form select {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  background: #fcfcfc;
  color: var(--ink, #162540);
  transition: border-color 0.25s ease;
  box-sizing: border-box;
}
.zhh-kfg-cf7-wrap .wpcf7-form input:focus,
.zhh-kfg-cf7-wrap .wpcf7-form textarea:focus {
  border-color: var(--em, #166b46);
  outline: none;
  background: #fff;
}
.zhh-kfg-cf7-wrap .wpcf7-form input[type="submit"] {
  width: 100%;
  padding: 16px 24px;
  background: var(--em, #166b46);
  color: #fff !important;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: inherit;
}
.zhh-kfg-cf7-wrap .wpcf7-form input[type="submit"]:hover {
  background: var(--em-hover, #0f5236) !important;
  color: #fff !important;
  transform: translateY(-2px);
}
.zhh-kfg-cf7-placeholder {
  padding: 20px;
  background: #fff8e1;
  border: 1px dashed #ffc107;
  border-radius: 8px;
  color: #856404;
  font-size: 14px;
}

/* Rechner CF7 wrapper */
.zhh-rchn-cf7-wrap .wpcf7 {
  margin: 0;
}
.zhh-rchn-cf7-wrap .wpcf7-form p {
  margin-bottom: 16px;
}
.zhh-rchn-cf7-wrap .wpcf7-form input[type="text"],
.zhh-rchn-cf7-wrap .wpcf7-form input[type="email"],
.zhh-rchn-cf7-wrap .wpcf7-form input[type="tel"],
.zhh-rchn-cf7-wrap .wpcf7-form textarea,
.zhh-rchn-cf7-wrap .wpcf7-form select {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  background: #fcfcfc;
  color: var(--ink, #162540);
  transition: border-color 0.25s ease;
  box-sizing: border-box;
}
.zhh-rchn-cf7-wrap .wpcf7-form input:focus,
.zhh-rchn-cf7-wrap .wpcf7-form textarea:focus {
  border-color: var(--em, #166b46);
  outline: none;
  background: #fff;
}
.zhh-rchn-cf7-wrap .wpcf7-form input[type="submit"] {
  width: 100%;
  padding: 16px 24px;
  background: var(--em, #166b46);
  color: #fff !important;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: inherit;
}
.zhh-rchn-cf7-wrap .wpcf7-form input[type="submit"]:hover {
  background: var(--em-hover, #0f5236) !important;
  color: #fff !important;
  transform: translateY(-2px);
}
.zhh-rchn-cf7-placeholder {
  padding: 20px;
  background: #fff8e1;
  border: 1px dashed #ffc107;
  border-radius: 8px;
  color: #856404;
  font-size: 14px;
}

/* ── Hover color safety: explicit fallbacks on all interactive elements ── */
/* These use var() with hardcoded fallbacks so Elementor/theme CSS can't override */
.zhh-rchn-opt-btn:hover {
  border-color: var(--em, #166b46) !important;
  background: #f0f9f5 !important;
  color: var(--ink, #162540) !important;
}
.zhh-rchn-cta-btn:hover,
.zhh-rchn-submit-btn:hover {
  background: var(--em-hover, #0f5236) !important;
  color: #fff !important;
}
.zhh-rchn-back-btn:hover {
  color: var(--ink, #162540) !important;
}
.zhh-uuns-btn:hover {
  color: var(--em, #166b46) !important;
  text-decoration: none !important;
  transform: translateY(-2px);
}
.zhh-kfg-cta-btn:hover {
  opacity: 0.9;
}
.zhh-kfg-form-submit:hover {
  opacity: 0.9;
}
.zhh-kassen-btn:hover {
  background: var(--em-hover, #0f5236) !important;
  color: #fff !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ZHH Navigation Widget  (.zhh-nav-*)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Wrapper ── */
.zhh-nav {
  position: sticky;
  top: 0;
  z-index: 9000;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  font-family: inherit;
}

.zhh-nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  height: 72px;
  width: 100%;
  padding: 0;
  max-width: 1100px;
}

/* ── Logo ── */
.zhh-nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none !important;
  color: var(--ink, #162540) !important;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.3px;
  width: 200px;
}
.zhh-nav-logo img {
  height: 40px;
  width: auto;
  display: block;
}
.zhh-nav-logo svg {
  height: 36px;
  width: auto;
  display: block;
}

/* ── Mobile Header (logo + close) ── */
.zhh-nav-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px 10px 16px;
  border-bottom: 1px solid var(--border, #e4e4e2);
}
.zhh-nav-mobile-logo {
  display: flex;
  align-items: center;
  text-decoration: none !important;
}
.zhh-nav-mobile-logo img,
.zhh-nav-mobile-logo svg {
  height: 30px;
  width: 200px;
  display: block;
}
.zhh-nav-mobile-logo:hover {
  opacity: 0.85;
}
.zhh-nav-mobile-close {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 8px;
  color: var(--ink, #162540);
  cursor: pointer;
}

.zhh-nav-mobile-close svg {
  position: relative;
  top: -6px;
  right: 8px;
}

.zhh-nav-mobile-close:hover {
  background: var(--surface, #f5f5f3);
  color: var(--em, #166b46);
}

/* ── Desktop Menu List ── */
.zhh-nav-list {
  display: flex !important;
  align-items: center;
  gap: 4px;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  flex: 1;
}

.zhh-nav-item {
  position: relative;
  list-style: none !important;
}

.zhh-nav-link,
.zhh-nav-trigger {
  display: inline-flex !important;
  align-items: center;
  gap: 4px;
  padding: 8px 14px !important;
  color: var(--ink, #162540) !important;
  font-size: 14.5px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  border: none !important;
  background: none !important;
  border-radius: 8px !important;
  cursor: pointer;
  transition:
    background 0.18s ease,
    color 0.18s ease;
  white-space: nowrap;
  font-family: inherit !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  box-shadow: none !important;
  outline: none !important;
}
.zhh-nav-link:hover,
.zhh-nav-trigger:hover {
  background: #f4f6f8 !important;
  color: var(--em, #166b46) !important;
  text-decoration: none !important;
}
.zhh-nav-link.active,
.zhh-nav-trigger.active {
  color: var(--em, #166b46) !important;
  font-weight: 700 !important;
}

/* ── Chevron ── */
.zhh-nav-chevron {
  flex-shrink: 0;
  transition: transform 0.22s ease;
}
.zhh-nav-trigger[aria-expanded="true"] .zhh-nav-chevron {
  transform: rotate(180deg);
}

/* ── Desktop Dropdown ── */
.zhh-nav-dropdown {
  display: none;
  position: absolute !important;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 12px 6px 6px; /* 12px oben = visueller Abstand + kein gap */
  list-style: none !important;
  margin: 0 !important;
  z-index: 1100;
}
.zhh-nav-dropdown.open {
  display: block;
}
.zhh-nav-dropdown li {
  list-style: none !important;
}
.zhh-nav-dropdown-link {
  display: block;
  padding: 9px 14px;
  color: var(--ink, #162540) !important;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none !important;
  border-radius: 8px;
  transition:
    background 0.16s ease,
    color 0.16s ease;
  white-space: nowrap;
}
.zhh-nav-dropdown-link:hover {
  background: #f0f9f5 !important;
  color: var(--em, #166b46) !important;
  text-decoration: none !important;
}

/* ── Actions (phone + CTA) ── */
.zhh-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: auto;
}

.zhh-nav-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  border-radius: 8px;
  color: var(--ink, #162540) !important;
  text-decoration: none !important;
  transition:
    background 0.18s ease,
    color 0.18s ease;
  flex-shrink: 0;
  background: var(--em, #166b46) !important;
}
.zhh-nav-phone:hover {
  background: var(--surface, #f5f5f3);
  color: var(--em, #166b46) !important;
  text-decoration: none !important;
}
.zhh-nav-phone svg {
  flex-shrink: 0;
}

.zhh-nav-cta {
  display: inline-flex !important;
  align-items: center;
  padding: 10px 20px !important;
  background: var(--em, #166b46) !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  border-radius: 50px !important;
  border: none !important;
  white-space: nowrap;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
  box-shadow: 0 2px 8px rgba(22, 107, 70, 0.25);
}
.zhh-nav-cta:hover {
  background: var(--em-hover, #0f5236) !important;
  color: #fff !important;
  text-decoration: none !important;
  transform: translateY(-1px);
}

/* ── Hamburger ── */
.zhh-nav-burger {
  display: none !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0 !important;
  background: none !important;
  border: none !important;
  border-radius: 8px !important;
  cursor: pointer;
  margin-left: auto;
  box-shadow: none !important;
  outline: none !important;
  flex-shrink: 0;
}
.zhh-nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink, #162540);
  border-radius: 2px;
  transition:
    transform 0.25s ease,
    opacity 0.2s ease,
    width 0.25s ease;
}
.zhh-nav-burger:hover span {
  background: var(--em, #166b46);
}

/* Burger → X animation */
.zhh-nav-open .zhh-nav-burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.zhh-nav-open .zhh-nav-burger span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.zhh-nav-open .zhh-nav-burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Menu Panel ── */
.zhh-nav-mobile {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 44px;
  background: #fff;
  border-top: 2px solid var(--em, #166b46);
  box-shadow: 0 8px 32px rgba(22, 37, 64, 0.15);
  z-index: 8999;
  max-height: calc(100vh - 60px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.zhh-nav-open .zhh-nav-mobile {
  display: block;
}

.zhh-nav-mobile-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 8px 20px !important;
}
.zhh-nav-mobile-item {
  list-style: none !important;
  border-bottom: 1px solid #f0f2f5;
}
.zhh-nav-mobile-item:last-child {
  border-bottom: none;
}

.zhh-nav-mobile-link,
.zhh-nav-mobile-trigger {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  width: 100% !important;
  padding: 16px 4px !important;
  color: var(--ink, #162540) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  border: none !important;
  background: none !important;
  border-radius: 0 !important;
  cursor: pointer;
  text-align: left !important;
  font-family: inherit !important;
  line-height: 1.3 !important;
  box-shadow: none !important;
  outline: none !important;
  box-sizing: border-box;
  letter-spacing: -0.1px;
}
.zhh-nav-mobile-link:hover,
.zhh-nav-mobile-trigger:hover {
  color: var(--em, #166b46) !important;
  text-decoration: none !important;
}
.zhh-nav-mobile-link.active,
.zhh-nav-mobile-trigger.active {
  color: var(--em, #166b46) !important;
  font-weight: 700 !important;
}

/* Mobile sub-dropdown */
.zhh-nav-mobile-dropdown {
  display: none;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 0 10px 16px !important;
}
.zhh-nav-mobile-dropdown.open {
  display: block;
}
.zhh-nav-mobile-dropdown li {
  list-style: none !important;
}
.zhh-nav-mobile-dropdown-link {
  display: block;
  padding: 10px 8px;
  color: var(--text-mid, #4a5568) !important;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none !important;
  border-radius: 6px;
  transition: color 0.16s ease;
}
.zhh-nav-mobile-dropdown-link:hover {
  color: var(--em, #166b46) !important;
  text-decoration: none !important;
}

/* Mobile actions */
.zhh-nav-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 20px 24px;
  border-top: 1px solid #f0f2f5;
  background: #fafbfc;
}
.zhh-nav-mobile-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--ink, #162540) !important;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none !important;
  white-space: nowrap;
  padding: 10px 0;
}
.zhh-nav-mobile-phone:hover {
  color: var(--em, #166b46) !important;
}
.zhh-nav-mobile-actions .zhh-nav-cta {
  display: flex !important;
  justify-content: center;
  width: 100% !important;
  box-sizing: border-box;
}

/* ── Responsive: hide desktop list & actions, show burger ── */
@media (max-width: 900px) {
  .zhh-nav-list,
  .zhh-nav-actions {
    display: none !important;
  }
  .zhh-nav-burger {
    display: flex !important;
  }
  .zhh-nav-inner {
    height: 60px;
  }
  .zhh-nav-mobile {
    top: 44px;
    max-height: calc(100vh - 60px);
  }
}

@media (max-width: 480px) {
  .zhh-nav-inner {
    padding: 0;
  }
  .zhh-nav-mobile {
    top: 44px;
  }
}
