
:root {
  --primary: #4A2F45;
  --primary-dark: #2F1D2C;
  --accent: #9B7895;
  --accent-soft: #EFE6EE;
  --bg: #FAF7F3;
  --bg-soft: #F4EEE9;
  --text: #1F2937;
  --muted: #4B5563;
  --white: #ffffff;
  --border: #E2D6D2;
  --shadow: 0 14px 36px rgba(52, 32, 47, 0.07);
  --radius: 18px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}
.topbar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.92);
  font-size: 0.875rem;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  flex-wrap: wrap;
}
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226,214,210,0.9);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}
.logo-wrap {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.logo {
  font-size: 1.8125rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  color: var(--primary);
}
.logo-sub {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.8px;
}
nav ul, .subnav {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
nav ul { justify-content: flex-end; }
nav a, .subnav a {
  color: var(--text);
  font-size: 0.9375rem;
  font-weight: 600;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 62.4375rem;
  padding: 14px 22px;
  font-size: 0.9375rem;
  font-weight: 700;
  transition: 0.2s ease;
  border: 0.0625rem solid transparent;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border-color: var(--border);
}
.btn-secondary:hover { border-color: var(--accent); }

/* Barrierefreiheit: klar sichtbarer Tastaturfokus */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.hero {
  padding: 60px 0 42px;
  background: linear-gradient(180deg, #FAF7F3 0%, #ffffff 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 62.4375rem;
  background: rgba(74,47,69,0.08);
  color: var(--primary);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
h1 {
  margin: 18px 0 18px;
  font-size: clamp(2.375rem, 5vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--primary-dark);
}
.home-page .hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.125rem);
}
.hero p {
  margin: 0 0 14px;
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 40.625rem;
}

.hero-checks {
  display: grid;
  gap: 10px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
  max-width: 40.625rem;
}
.hero-checks li {
  position: relative;
  padding-left: 30px;
  color: var(--primary-dark);
  font-weight: 700;
}
.hero-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28em;
  width: 18px;
  height: 18px;
  border-radius: 62.4375rem;
  background: rgba(31, 122, 71, 0.12);
  border: 0.0625rem solid rgba(31, 122, 71, 0.18);
}
.hero-checks li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: calc(0.28em + 4px);
  width: 5px;
  height: 8px;
  border: solid #1f7a47;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.hero-card picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 28px;
}
.hero-points span, .tag {
  background: var(--white);
  border: 0.0625rem solid var(--border);
  border-radius: 62.4375rem;
  padding: 10px 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.hero-note, .muted {
  font-size: 0.875rem;
  color: var(--muted);
}
.micro-copy {
  margin: 10px 0 0;
  font-size: 0.875rem;
  color: var(--muted);
}
.hero-card {
  position: relative;
  background: linear-gradient(160deg, #F4EEE9 0%, #ffffff 100%);
  border: 0.0625rem solid var(--border);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 680px;
  display: flex;
  align-items: end;
  justify-content: center;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(74,47,69,0.10), transparent 38%);
  pointer-events: none;
}
.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-badge {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  border: 0.0625rem solid rgba(226,214,210,0.85);
  border-radius: 22px;
  padding: 18px 18px;
  box-shadow: 0 10px 35px rgba(52, 32, 47, 0.09);
}
.hero-badge strong {
  display: block;
  font-size: 1.125rem;
  color: var(--primary-dark);
  margin-bottom: 6px;
}
.hero-badge span {
  color: var(--muted);
  font-size: 0.875rem;
}
section { padding: 78px 0; }
.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}
.section-head h2 {
  margin: 0 0 14px;
  font-size: clamp(1.75rem, 4vw, 2.625rem);
  color: var(--primary-dark);
  line-height: 1.12;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.0625rem;
}
.services { background: var(--bg); }
.grid { display: grid; gap: 22px; }
.services-grid { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--white);
  border: 0.0625rem solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 28px rgba(52, 32, 47, 0.05);
  height: 100%;
}
.card-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(74,47,69,0.10) 0%, rgba(74,47,69,0.05) 100%);
  color: var(--primary);
  border: 0.0625rem solid rgba(74,47,69,0.10);
  border-radius: 18px;
  margin-bottom: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}
.card-icon svg,
.page-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card h3 {
  margin: 0 0 12px;
  font-size: 1.5rem;
  color: var(--primary-dark);
}
.card p { margin: 0 0 16px; color: var(--muted); font-size: 0.9375rem; }
.card ul { margin: 0; padding-left: 18px; color: var(--text); }
.card li { margin-bottom: 6px; font-size: 0.9375rem; }
.positioning-grid { grid-template-columns: 1.1fr 0.9fr; align-items: start; }
.feature-list { display: grid; gap: 14px; margin-top: 20px; }
.feature-item {
  background: var(--bg-soft);
  border: 0.0625rem solid var(--border);
  border-radius: 18px;
  padding: 18px 18px;
}
.feature-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--primary-dark);
  font-size: 1.125rem;
}
.feature-item span { color: var(--muted); font-size: 0.9375rem; }
.process { background: linear-gradient(180deg, #ffffff 0%, #FAF7F3 100%); }
.process-grid { grid-template-columns: repeat(4, 1fr); }
.step { position: relative; padding-top: 70px; }
.step-number {
  position: absolute;
  top: 26px; left: 26px;
  width: 44px; height: 44px;
  border-radius: 62.4375rem;
  display: inline-flex;
  align-items: center; justify-content: center;
  background: var(--primary);
  color: var(--white);
  font-weight: 800;
}
.about { background: var(--white); }
.about-grid { grid-template-columns: 0.9fr 1.1fr; gap: 28px; align-items: stretch; }
.about-panel {
  background: var(--primary-dark);
  color: var(--white);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.about-panel h3, .contact-box h3, .legal-card h2 { margin-top: 0; margin-bottom: 14px; font-size: 1.75rem; }
.about-panel p { margin: 0 0 16px; color: rgba(255,255,255,0.88); }
.about-panel ul { margin: 20px 0 0; padding-left: 18px; color: rgba(255,255,255,0.88); }
.about-panel li { margin-bottom: 10px; }
.testimonials { background: var(--bg); }
.testimonials-grid { grid-template-columns: repeat(3, 1fr); }
.quote { font-size: 1rem; color: var(--text); margin-bottom: 18px; }
.author { color: var(--muted); font-size: 0.875rem; font-weight: 700; }
.contact { padding-bottom: 110px; }
.contact-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-box, .legal-card {
  background: var(--white);
  border: 0.0625rem solid var(--border);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.contact-box p, .legal-card p { color: var(--muted); }
.contact-list { display: grid; gap: 14px; margin-top: 20px; }
.contact-row {
  padding: 14px 16px;
  background: var(--bg-soft);
  border: 0.0625rem solid var(--border);
  border-radius: 18px;
}
.contact-row strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hours { margin-top: 18px; font-size: 0.9375rem; color: var(--muted); }
form { display: grid; gap: 14px; margin-top: 18px; }
input, textarea, select {
  width: 100%;
  border: 0.0625rem solid var(--border);
  border-radius: 16px;
  padding: 15px 16px;
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
}
textarea { min-height: 140px; resize: vertical; }
footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.9);
  padding: 36px 0;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; font-size: 0.875rem; margin-left: auto; margin-right: 170px; justify-content: flex-end; }
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1200;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.92);
  box-shadow: 0 18px 36px rgba(37,211,102,0.34), 0 8px 18px rgba(52,32,47,0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}
.wa-float:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(37,211,102,0.40), 0 10px 22px rgba(52,32,47,0.22);
}
.wa-float:active { transform: translateY(0); }
.wa-icon {
  width: 34px;
  height: 2.125rem;
  display: block;
}
.sr-only {
  position: absolute ;
  width: 1px ;
  height: 1px ;
  padding: 0 ;
  margin: -1px ;
  overflow: hidden ;
  clip: rect(0, 0, 0, 0) ;
  white-space: nowrap ;
  border: 0 ;
}
.legal-box {
  margin-top: 22px;
  background: #fdfefe;
  border: 1px dashed #E2D6D2;
  border-radius: 18px;
  padding: 18px;
  color: var(--muted);
  font-size: 0.875rem;
}
.page-hero {
  padding: 52px 0 22px;
  background: linear-gradient(180deg, #FAF7F3 0%, #ffffff 100%);
}
.page-hero h1 {
  font-size: clamp(2.125rem, 4vw, 3.375rem);
  margin-bottom: 12px;
}
.breadcrumbs {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.875rem;
}
.page-hero-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.page-icon {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(74,47,69,0.10) 0%, rgba(74,47,69,0.05) 100%);
  color: var(--primary);
  border: 0.0625rem solid rgba(74,47,69,0.10);
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(52, 32, 47, 0.06), inset 0 1px 0 rgba(255,255,255,0.72);
}
.eyebrow-wrap .eyebrow {
  margin: 0;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  align-items: start;
}
.legal-card h2 {
  font-size: 1.5rem;
  color: var(--primary-dark);
}
.legal-card h3 {
  color: var(--primary-dark);
  margin-top: 26px;
  margin-bottom: 8px;
  font-size: 1.125rem;
}
.legal-card ul {
  padding-left: 20px;
}
.note {
  background: #fff8e8;
  border: 0.0625rem solid #f0ddb0;
  color: #6c5b2f;
  border-radius: 18px;
  padding: 16px 18px;
  font-size: 0.875rem;
}
.sidebar-box {
  position: sticky;
  top: 110px;
  background: var(--bg-soft);
  border: 0.0625rem solid var(--border);
  border-radius: 22px;
  padding: 22px;
}
.sidebar-box h3 {
  margin: 0 0 12px;
  color: var(--primary-dark);
}
.sidebar-box p { color: var(--muted); margin: 0 0 12px; }
.code {
  display: block;
  background: #FAF7F3;
  border: 0.0625rem solid var(--border);
  border-radius: 14px;
  padding: 12px;
  overflow-x: auto;
  font-family: Consolas, monospace;
  font-size: 0.8125rem;
  color: var(--primary-dark);
}
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.sitemap-box {
  background: var(--bg-soft);
  border: 0.0625rem solid var(--border);
  border-radius: 18px;
  padding: 20px;
}
.sitemap-box h3 {
  margin: 0 0 12px;
  color: var(--primary-dark);
}
.sitemap-box ul {
  margin: 0;
  padding-left: 18px;
}
@media (max-width: 1100px) {
  .hero-grid, .positioning-grid, .about-grid, .contact-grid, .services-grid, .process-grid, .testimonials-grid, .two-col, .sitemap-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-card { min-height: 560px; }
}
@media (max-width: 1100px) {
  .footer-links { margin-right: 0; justify-content: flex-start; }
}
@media (max-width: 48.75rem) {
  .nav { flex-direction: column; align-items: flex-start; }
  nav ul { justify-content: flex-start; }
  .hero, section, .page-hero { padding: 54px 0; }
  .hero-grid, .positioning-grid, .about-grid, .contact-grid, .services-grid, .process-grid, .testimonials-grid, .two-col, .sitemap-grid {
    grid-template-columns: 1fr;
  }
  .hero-card { min-height: 460px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .wa-float { bottom: 12px; right: 12px; }
}


.page-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.subnav-wrap {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.subnav a {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 62.4375rem;
  border: 0.0625rem solid var(--border);
  background: var(--white);
}
.subnav a.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.topic-card {
  background: var(--white);
  border: 0.0625rem solid var(--border);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 10px 28px rgba(52, 32, 47, 0.05);
}
.topic-card h3 {
  margin: 0 0 12px;
  color: var(--primary-dark);
  font-size: 1.4375rem;
}
.topic-card ul {
  margin: 0;
  padding-left: 18px;
}
.topic-card li {
  margin-bottom: 9px;
}
.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.check-box {
  background: var(--bg-soft);
  border: 0.0625rem solid var(--border);
  border-radius: 22px;
  padding: 24px;
}
.check-box h3 {
  margin: 0 0 12px;
  color: var(--primary-dark);
  font-size: 1.375rem;
}
.check-box ul {
  margin: 0;
  padding-left: 18px;
}
.check-box li { margin-bottom: 8px; }
.cta-band {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.cta-band h2 {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}
.cta-band p {
  margin: 0 0 22px;
  color: rgba(255,255,255,0.88);
  max-width: 760px;
}
.cta-band .btn-secondary {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.26);
}
.cta-band .btn-secondary:hover {
  background: rgba(255,255,255,0.18);
}
.section-soft {
  background: var(--bg);
}
.service-link {
  margin-top: 18px;
}
.hero-wide {
  max-width: 920px;
}
@media (max-width: 1100px) {
  .topic-grid, .check-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 48.75rem) {
  .topic-grid, .check-grid { grid-template-columns: 1fr; }
  .page-actions { flex-direction: column; }
}


/* Version 3 */

.page-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 22px; }
.service-link { margin-top: 20px; }
.contact-intro-list { display: grid; gap: 12px; margin-top: 18px; }
.contact-intro-list .contact-row { background: var(--bg-soft); }
.dual-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.status-note { min-height: 24px; font-size: 0.875rem; color: var(--muted); }
.booking-card { background: linear-gradient(180deg, #FAF7F3 0%, #ffffff 100%); border: 0.0625rem solid var(--border); border-radius: 28px; padding: 28px; box-shadow: var(--shadow); }
.booking-card h3 { margin-top: 0; margin-bottom: 12px; color: var(--primary-dark); font-size: 1.75rem; }
.booking-card p { color: var(--muted); }
.booking-points { display: grid; gap: 12px; margin: 20px 0 22px; }
.booking-points div { background: var(--white); border: 0.0625rem solid var(--border); border-radius: 18px; padding: 14px 16px; }
.booking-points strong { display:block; color: var(--primary-dark); margin-bottom: 0.25rem; }
.footer-links a:hover, nav a:hover, .subnav a:hover { color: var(--accent); }

@media (max-width: 48.75rem) {
  .dual-actions { grid-template-columns: 1fr; }
  .footer-links { margin-left: 0; margin-right: 0; }
}


/* Version 5 */
.trust-links { background: var(--bg); }
.trust-card { display: flex; flex-direction: column; align-items: flex-start; }
.trust-card h3 { margin: 0 0 12px; color: var(--primary-dark); font-size: 1.5rem; }
.trust-card p { margin: 0 0 18px; color: var(--muted); }
.profile-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 28px; align-items: center; }
.profile-visual { padding: 18px; overflow: hidden; }
.profile-visual img { width: 100%; border-radius: 24px; background: linear-gradient(180deg, #FAF7F3 0%, #ffffff 100%); }
.two-main-col { display: grid; grid-template-columns: 1fr 320px; gap: 24px; align-items: start; }
.compact-head { margin-bottom: 10px; }
.career-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.career-item { background: var(--white); border: 0.0625rem solid var(--border); border-radius: 22px; padding: 22px; box-shadow: 0 10px 28px rgba(52, 32, 47, 0.05); }
.career-item strong { display: block; margin-bottom: 8px; color: var(--primary-dark); font-size: 1.125rem; }
.career-item span { color: var(--muted); }
.faq-layout { display: grid; grid-template-columns: 1fr 320px; gap: 24px; align-items: start; }
.faq-list { display: grid; gap: 14px; }
.faq-item { background: var(--white); border: 0.0625rem solid var(--border); border-radius: 22px; padding: 0; box-shadow: 0 10px 28px rgba(52, 32, 47, 0.04); overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 18px 22px; font-weight: 700; color: var(--primary-dark); position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--accent); }
.faq-item[open] summary::after { content: "−"; }
.faq-answer { padding: 0 22px 20px; color: var(--muted); }
.faq-answer p { margin: 0; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card h3 { margin: 0 0 12px; color: var(--primary-dark); }
.review-card p { margin: 0; color: var(--muted); }
.review-card.pending { background: linear-gradient(180deg, #FAF7F3 0%, #ffffff 100%); }
.clean-list { margin: 0; padding-left: 18px; }
.clean-list li { margin-bottom: 10px; }
@media (max-width: 1100px) {
  .profile-hero-grid, .two-main-col, .faq-layout, .career-grid, .review-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 48.75rem) {
  .profile-hero-grid, .two-main-col, .faq-layout, .career-grid, .review-grid { grid-template-columns: 1fr; }
}


/* Version 6 */
.compact-spacing { margin-top: 20px; }
.contact-grid .contact-box form { margin-top: 18px; }
.booking-card form { margin-top: 18px; }
.booking-card .dual-actions .btn,
.contact-box .dual-actions .btn { width: 100%; }
.hero-points .tag { display: inline-flex; }
.breadcrumbs strong { color: var(--primary-dark); }
@media (max-width: 48.75rem) {
  .footer-links { margin-left: 0; margin-right: 0; }
}


.form-label { display: grid; gap: 8px; font-size: 0.875rem; color: var(--primary-dark); font-weight: 700; }
.form-label span { display: block; }

.required-label::after {
  content: " *";
  color: #8b1f1f;
}
.profile-visual picture {
  display: block;
}
.responsive-dual { align-items: start; }
.honeypot-field { position: absolute ; left: -9999px ; width: 1px; height: 1px; overflow: hidden; }
.consent-check { display: grid; grid-template-columns: 20px 1fr; gap: 12px; align-items: start; font-size: 0.875rem; color: var(--muted); }
.consent-check input { margin-top: 3px; }
.consent-check a { color: var(--primary); text-decoration: underline; }
.form-actions-stacked { display: grid; gap: 12px; }
.status-note.is-error { color: #8b1f1f; }
.status-note.is-success { color: #1f6b3a; }
.status-note.is-loading { color: var(--primary); }
button[disabled] { opacity: 0.7; cursor: not-allowed; }
@media (max-width: 48.75rem) {
  .consent-check { grid-template-columns: 20px 1fr; }
}


/* Version 8 */
.booking-options-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.booking-option { background: var(--white); border: 0.0625rem solid var(--border); border-radius: 22px; padding: 22px; box-shadow: 0 10px 28px rgba(52, 32, 47, 0.05); }
.booking-option h3 { margin: 0 0 10px; color: var(--primary-dark); font-size: 1.375rem; }
.booking-option p { margin: 0 0 16px; color: var(--muted); }
.booking-option .btn { width: auto; }
.booking-meta { display: grid; gap: 10px; margin-top: 16px; }
.booking-meta span { display: block; background: var(--bg-soft); border: 0.0625rem solid var(--border); border-radius: 16px; padding: 12px 14px; color: var(--text); font-size: 0.875rem; }
.setup-note { margin-top: 18px; background: #FAF7F3; border: 1px dashed var(--border); border-radius: 18px; padding: 16px 18px; color: var(--muted); font-size: 0.875rem; }
@media (max-width: 1100px) { .booking-options-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 48.75rem) { .booking-options-grid { grid-template-columns: 1fr; } }


.calendar-integration {
  background: linear-gradient(180deg, #FAF7F3 0%, #ffffff 100%);
  border: 0.0625rem solid var(--border);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.calendar-fallback,
.calendar-live {
  display: grid;
  gap: 24px;
  align-items: center;
}
.calendar-fallback {
  grid-template-columns: 1.2fr 0.8fr;
}
.calendar-fallback-copy h3,
.calendar-live h3 {
  margin: 12px 0 12px;
  font-size: 1.875rem;
  color: var(--primary-dark);
}
.calendar-fallback-copy p,
.calendar-live p {
  margin: 0;
  color: var(--muted);
}
.info-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--text);
}
.info-list li {
  margin-bottom: 8px;
}
.calendar-fallback-actions,
.calendar-live-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.calendar-live-link {
  grid-template-columns: 1.2fr 0.8fr;
}
.calendar-live-embed {
  gap: 18px;
}
.calendar-live-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.calendar-provider {
  background: rgba(74,47,69,0.08);
  border: 0.0625rem solid var(--border);
  color: var(--primary);
  border-radius: 62.4375rem;
  padding: 10px 14px;
  font-size: 0.875rem;
  font-weight: 700;
}
.calendar-frame-wrap {
  border: 0.0625rem solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  background: var(--white);
  min-height: 760px;
}
.calendar-frame-wrap iframe {
  width: 100%;
  min-height: 760px;
  border: 0;
  display: block;
}
.calendar-privacy-note {
  color: var(--muted);
  font-size: 0.875rem;
}

@media (max-width: 48.75rem) {
  .calendar-fallback,
  .calendar-live-link {
    grid-template-columns: 1fr;
  }

  .calendar-frame-wrap,
  .calendar-frame-wrap iframe {
    min-height: 680px;
  }
}

@media (max-width: 48.75rem) {
  .page-hero-top { align-items: flex-start; }
  .page-icon { width: 56px; height: 56px; flex-basis: 56px; border-radius: 18px; }
  .card-icon { width: 56px; height: 56px; }
}


/* Version 16 */


/* Version 17 */
.calendar-live-multi {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.calendar-booking-card {
  background: var(--white);
  border: 0.0625rem solid var(--border);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(52, 32, 47, 0.05);
  display: grid;
  gap: 14px;
  align-content: start;
}
.calendar-booking-card h3 {
  margin: 0;
  color: var(--primary-dark);
  font-size: 1.5rem;
}
.calendar-booking-card p {
  margin: 0;
  color: var(--muted);
}
.booking-options-grid--three-plus-one {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1100px) {
  .calendar-live-multi,
  .booking-options-grid--three-plus-one { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 48.75rem) {
  .calendar-live-multi,
  .booking-options-grid--three-plus-one { grid-template-columns: 1fr; }
}


/* UX optimization */
html { scroll-padding-top: 110px; }
#fuer-wen, #leistungen, #kontakt, #vorteile, #ueber-mich, #direkt-termin, #videoberatung, #videowahl { scroll-margin-top: 110px; }

.nav {
  position: relative;
}
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 0.0625rem solid var(--border);
  background: var(--white);
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 62.4375rem;
  background: var(--primary-dark);
}
.nav-panel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex: 1;
}
.nav-cta {
  white-space: nowrap;
}
nav a.is-current {
  color: var(--primary);
}

/* Dropdown-Navigation Leistungen */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-dropdown-toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.65;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 285px;
  margin: 0;
  padding: 10px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(255,255,255,0.98);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(52, 32, 47, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 1200;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.35;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.is-current {
  background: #EFE6EE;
  color: var(--primary);
}

.hero-actions-secondary {
  margin-top: 18px;
}
.appointment-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 12px;
}
.appointment-quick-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 20px;
  border: 0.0625rem solid var(--border);
  background: linear-gradient(180deg, #ffffff 0%, #FAF7F3 100%);
  box-shadow: 0 10px 28px rgba(52, 32, 47, 0.05);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.appointment-quick-card:hover {
  transform: translateY(-2px);
  border-color: rgba(74,47,69,0.25);
  box-shadow: 0 16px 34px rgba(52, 32, 47, 0.09);
}
.appointment-quick-card strong {
  color: var(--primary-dark);
  font-size: 1.125rem;
}
.appointment-quick-card span {
  color: var(--muted);
  font-size: 0.875rem;
}
.appointment-quick-card--light {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.18);
}
.appointment-quick-card--light strong,
.appointment-quick-card--light span {
  color: var(--white);
}
.trust-strip {
  padding: 0 0 10px;
  background: linear-gradient(180deg, #ffffff 0%, #FAF7F3 100%);
}
.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trust-strip-item {
  background: var(--white);
  border: 0.0625rem solid var(--border);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 10px 28px rgba(52, 32, 47, 0.04);
}
.trust-strip-item strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 6px;
  font-size: 1rem;
}
.trust-strip-item span {
  color: var(--muted);
  font-size: 0.875rem;
}
.target-groups {
  padding-top: 48px;
}
.target-grid {
  grid-template-columns: repeat(4, 1fr);
}
.target-card {
  background: var(--white);
  border: 0.0625rem solid var(--border);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(52, 32, 47, 0.04);
}
.target-card h3 {
  margin: 0 0 10px;
  color: var(--primary-dark);
  font-size: 1.375rem;
}
.target-card p {
  margin: 0;
  color: var(--muted);
}
.appointment-band .page-actions {
  margin-top: 22px;
}

@media (max-width: 1100px) {
  .appointment-quick-grid,
  .trust-strip-grid,
  .target-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 48.75rem) {
  .topbar {
    display: none;
  }
  .nav {
    flex-direction: row;
    align-items: center;
  }
  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }
  .nav-panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    border: 0.0625rem solid var(--border);
    border-radius: 22px;
    box-shadow: 0 20px 60px rgba(52, 32, 47, 0.12);
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .nav-panel.is-open {
    display: flex;
  }
  nav {
    width: 100%;
  }
  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
  }
  .nav-cta {
    width: 100%;
  }

  .nav-dropdown {
    width: 100%;
  }
  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }
  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    width: 100%;
    padding: 4px 0 0 12px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    gap: 4px;
  }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    transform: none;
  }
  .nav-dropdown-menu a {
    padding: 6px 0;
    color: var(--muted);
    font-size: 0.92rem;
    white-space: normal;
  }
  .nav-dropdown-menu a:hover,
  .nav-dropdown-menu a.is-current {
    background: transparent;
    color: var(--primary);
  }
  .hero, section, .page-hero {
    padding: 48px 0;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero-actions-secondary {
    margin-top: 16px;
  }
  .appointment-quick-grid,
  .trust-strip-grid,
  .target-grid {
    grid-template-columns: 1fr;
  }
  .trust-strip {
    padding-top: 0;
  }
}


/* Landingpages */
.landing-header .nav {
  align-items: center;
}
.landing-header-actions {
  margin-top: 0;
  margin-left: auto;
  justify-content: flex-end;
}
.landing-header-actions .btn {
  width: auto;
}
.landing-hero-card {
  background: linear-gradient(160deg, #F4EEE9 0%, #ffffff 100%);
  border: 0.0625rem solid var(--border);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  min-height: 100%;
}
.landing-hero-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
}
.landing-hero-copy {
  padding: 24px;
  display: grid;
  gap: 14px;
}
.landing-hero-copy h3,
.landing-mini-card h3,
.landing-form-card h3 {
  margin: 0;
  color: var(--primary-dark);
}
.landing-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.landing-mini-card {
  background: var(--white);
  border: 0.0625rem solid var(--border);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 10px 28px rgba(52, 32, 47, 0.05);
}
.landing-mini-card p {
  margin: 10px 0 0;
  color: var(--muted);
}
.landing-band {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
}
.landing-band .section-head h2,
.landing-band .section-head p,
.landing-band .contact-row strong,
.landing-band .contact-row,
.landing-band .micro-copy {
  color: var(--white);
}
.landing-band .contact-row {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.18);
}
.landing-band .btn-secondary {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.22);
}
.landing-band .btn-secondary:hover {
  background: rgba(255,255,255,0.18);
}
.landing-form-card {
  background: var(--white);
  border: 0.0625rem solid var(--border);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.landing-form-card p {
  color: var(--muted);
}
.landing-legal-note {
  margin-top: 16px;
  font-size: 0.8125rem;
  color: var(--muted);
}
.landing-faq .faq-list {
  max-width: 920px;
}
@media (max-width: 1100px) {
  .landing-mini-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 48.75rem) {
  .landing-header-actions {
    margin-left: 0;
    width: 100%;
  }
  .landing-header-actions .btn {
    width: 100%;
  }
  .landing-mini-grid {
    grid-template-columns: 1fr;
  }
  .landing-hero-card img {
    height: 320px;
  }
}


/* Kopierschutz deaktiviert */
.copy-guard .topbar,
.copy-guard .landing-header,
.copy-guard main,
.copy-guard footer,
.copy-guard input,
.copy-guard textarea,
.copy-guard select,
.copy-guard .copy-allow,
.copy-guard .status-note {
  -webkit-user-select: text;
  user-select: text;
  -webkit-touch-callout: default;
}

.copy-guard img {
  -webkit-user-drag: auto;
  user-drag: auto;
}



.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


.heinrichs-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1450;
  pointer-events: none;
}
.heinrichs-consent__bar,
.heinrichs-consent__modal,
.heinrichs-consent__reopen {
  pointer-events: auto;
}
.heinrichs-consent__bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  width: min(920px, calc(100% - 32px));
  margin: 0 auto 16px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(14px);
  color: var(--text);
  border: 0.0625rem solid rgba(226,214,210,0.96);
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(52, 32, 47, 0.12);
}
.heinrichs-consent__bar[hidden] {
  display: none;
}
.heinrichs-consent__bar-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 62.4375rem;
  border: 0.0625rem solid rgba(226, 214, 210, 0.96);
  background: linear-gradient(180deg, #FAF7F3 0%, #EFE6EE 100%);
  color: var(--primary-dark);
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.92);
}
.heinrichs-consent__bar-tag:hover {
  transform: translateY(-1px);
}
.heinrichs-consent__mini-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 62.4375rem;
  border: 0.0625rem solid rgba(226, 214, 210, 0.96);
  background: linear-gradient(180deg, #FAF7F3 0%, #EFE6EE 100%);
  color: var(--primary-dark);
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.92);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.heinrichs-consent__mini-trigger:hover {
  transform: translateY(-1px);
}
.heinrichs-consent__bar-symbol svg,
.heinrichs-consent__reopen svg,
.heinrichs-consent__icon-button svg,
.heinrichs-consent__close svg {
  width: 22px;
  height: 22px;
}
.heinrichs-consent__bar-copy {
  min-width: 0;
}
.heinrichs-consent__bar-copy strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--primary-dark);
}
.heinrichs-consent__bar-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8125rem;
  line-height: 1.45;
}
.heinrichs-consent__bar-copy a,
.heinrichs-consent__modal a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.heinrichs-consent__bar-actions,
.heinrichs-consent__modal-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}
.heinrichs-consent__pill,
.heinrichs-consent__mini-trigger,
.heinrichs-consent__icon-button,
.heinrichs-consent__close {
  border: 0;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.heinrichs-consent__pill:hover,
.heinrichs-consent__mini-trigger:hover,
.heinrichs-consent__icon-button:hover,
.heinrichs-consent__close:hover {
  transform: translateY(-1px);
}
.heinrichs-consent__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 62.4375rem;
  background: var(--white);
  color: var(--primary-dark);
  border: 0.0625rem solid var(--border);
  font-size: 0.875rem;
  font-weight: 700;
}
.heinrichs-consent__pill--primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 10px 28px rgba(74, 47, 69, 0.16);
}
.heinrichs-consent__icon-button,
.heinrichs-consent__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
}
.heinrichs-consent__reopen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 62.4375rem;
  background: linear-gradient(180deg, #FAF7F3 0%, #EFE6EE 100%);
  color: var(--primary-dark);
  border: 0.0625rem solid rgba(226, 214, 210, 0.96);
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 14px 34px rgba(52, 32, 47, 0.12), inset 0 1px 0 rgba(255,255,255,0.92);
}
.heinrichs-consent__icon-button {
  background: var(--bg-soft);
  color: var(--primary);
  border: 0.0625rem solid var(--border);
}
.heinrichs-consent__modal-layer[hidden] {
  display: none;
}
.heinrichs-consent__modal-layer {
  position: fixed;
  inset: 0;
  z-index: 1490;
}
.heinrichs-consent__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(52, 32, 47, 0.22);
  backdrop-filter: blur(4px);
}
.heinrichs-consent__modal {
  position: relative;
  width: min(540px, calc(100% - 32px));
  margin: 56px auto 20px;
  max-height: calc(100vh - 96px);
  overflow: auto;
  padding: 22px;
  background: rgba(255,255,255,0.99);
  color: var(--text);
  border: 0.0625rem solid rgba(226,214,210,0.96);
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(52, 32, 47, 0.16);
}
.heinrichs-consent__modal-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.heinrichs-consent__modal-head h2 {
  margin: 0 0 8px;
  font-size: 1.75rem;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--primary-dark);
}
.heinrichs-consent__modal-head p,
.heinrichs-consent__modal-intro p,
.heinrichs-consent__option p {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.55;
}
.heinrichs-consent__close {
  background: var(--bg-soft);
  color: var(--primary);
  border: 0.0625rem solid var(--border);
  flex: 0 0 auto;
}
.heinrichs-consent__modal-intro {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}
.heinrichs-consent__option-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.heinrichs-consent__option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  background: linear-gradient(180deg, #FAF7F3 0%, #F4EEE9 100%);
  border: 0.0625rem solid var(--border);
  border-radius: 20px;
}
.heinrichs-consent__option-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.heinrichs-consent__option-title-row h3 {
  margin: 0;
  color: var(--primary-dark);
  font-size: 1.125rem;
  line-height: 1.2;
}
.heinrichs-consent__badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 62.4375rem;
  background: rgba(74,47,69,0.08);
  color: var(--primary);
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.heinrichs-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 2.125rem;
}
.heinrichs-switch input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}
.heinrichs-switch__slider {
  position: relative;
  display: block;
  width: 58px;
  height: 2.125rem;
  background: #D8C8D5;
  border: 0.0625rem solid #CBB9C8;
  border-radius: 62.4375rem;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.heinrichs-switch__slider::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(52, 32, 47, 0.12);
  transition: transform 0.18s ease;
}
.heinrichs-switch input:checked + .heinrichs-switch__slider {
  background: rgba(74,47,69,0.24);
  border-color: rgba(74,47,69,0.36);
}
.heinrichs-switch input:checked + .heinrichs-switch__slider::after {
  transform: translateX(24px);
}
.heinrichs-switch input:disabled + .heinrichs-switch__slider {
  cursor: not-allowed;
  opacity: 0.92;
}
.heinrichs-consent__modal-actions {
  margin-top: 18px;
  justify-content: flex-start;
}
.heinrichs-consent__reopen {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 1410;
  background: rgba(255,255,255,0.98);
  color: var(--primary);
  border: 0.0625rem solid var(--border);
  box-shadow: 0 16px 36px rgba(52, 32, 47, 0.12);
}
.heinrichs-consent__reopen[hidden] {
  display: none;
}
body.heinrichs-consent-visible {
  padding-bottom: 108px;
}
body.heinrichs-consent-visible .wa-float,
body.heinrichs-consent-visible .sticky-lead-bar {
  bottom: 96px ;
}
body.heinrichs-consent-modal-open {
  overflow: hidden;
}
@media (max-width: 980px) {
  .heinrichs-consent__bar {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .heinrichs-consent__bar-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-left: 0;
  }
}
@media (max-width: 48.75rem) {
  .heinrichs-consent__bar {
    width: calc(100% - 16px);
    gap: 12px;
    padding: 14px;
    margin-bottom: 8px;
    border-radius: 20px;
    grid-template-columns: 1fr;
  }
}


/* Homepage update adjustments */
.hero-wide--left {
  width: min(920px, calc(100% - 32px));
  max-width: 920px;
  margin-left: max(16px, calc((100vw - var(--container)) / 2));
  margin-right: auto;
}

.faq-layout--single,
.two-col--single {
  grid-template-columns: 1fr;
}

.calendar-booking-card .dual-actions {
  grid-template-columns: 1fr;
}

.calendar-booking-card .btn,
.booking-option .btn {
  width: 100%;
  min-height: 56px;
  white-space: normal;
  text-align: center;
}

@media (max-width: 48.75rem) {
  .hero-wide--left {
    width: calc(100% - 32px);
    margin-left: 16px;
    margin-right: 16px;
  }
}


/* Homepage update adjustments v4 */
.booking-option .dual-actions {
  grid-template-columns: 1fr;
}

.booking-option .btn,
.booking-card .dual-actions .btn,
.calendar-booking-card .btn {
  width: 100%;
  min-height: 56px;
  white-space: normal;
  text-align: center;
  line-height: 1.3;
}


/* Final polish: calmer and more consistent surface system */
.eyebrow {
  background: #EFE6EE;
  color: var(--primary-dark);
  letter-spacing: 0.03em;
  padding: 7px 12px;
}

.hero-points span,
.tag,
.booking-meta span,
.calendar-provider {
  background: var(--bg-soft);
  border-color: var(--border);
  color: var(--primary-dark);
}

.card,
.target-card,
.trust-strip-item,
.feature-item,
.appointment-quick-card,
.contact-row,
.booking-option,
.career-item,
.sitemap-box,
.calendar-booking-card,
.contact-box,
.legal-card,
.sidebar-box,
.faq-item,
.booking-card,
.calendar-integration,
.landing-form-card,
.legal-box,
.note {
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(52, 32, 47, 0.04);
}

.appointment-quick-card,
.booking-card,
.calendar-integration,
.trust-strip,
.page-icon,
.hero-card::before,
.cta-band,
.hero,
.page-hero {
  background-image: none;
}

.appointment-quick-card,
.trust-strip-item,
.target-card,
.booking-option,
.calendar-booking-card,
.sitemap-box,
.sidebar-box,
.booking-card,
.calendar-integration {
  background: var(--white);
}

.hero-card,
.hero-badge,
.contact-box,
.legal-card {
  border-radius: 18px;
}

.appointment-quick-card:hover {
  transform: none;
  border-color: var(--border);
  box-shadow: 0 8px 24px rgba(52, 32, 47, 0.04);
}

.setup-note {
  margin-top: 18px;
  background: var(--bg-soft);
  border: 0.0625rem solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--muted);
  font-size: 0.875rem;
}

.sitemap-grid {
  grid-template-columns: repeat(3, 1fr);
}

.sitemap-box ul {
  margin: 0;
  padding-left: 18px;
}

@media (max-width: 1100px) {
  .sitemap-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 48.75rem) {
  .sitemap-grid {
    grid-template-columns: 1fr;
  }
}


/* Header contact numbers */
.header-contact {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-right: auto;
  line-height: 1.15;
  align-items: flex-start;
}
.header-contact a {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  color: var(--primary-dark);
  font-size: 0.8125rem;
  font-weight: 800;
  white-space: nowrap;
}
.header-contact a:hover {
  color: var(--primary);
}
.header-contact-label {
  color: var(--muted);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (max-width: 980px) {
  .nav {
    gap: 14px;
  }
  .header-contact a {
    font-size: 0.75rem;
  }
}
@media (max-width: 48.75rem) {
  .nav {
    gap: 10px;
  }
  .logo {
    font-size: 1.5625rem;
  }
  .logo-sub {
    font-size: 0.625rem;
    letter-spacing: 1.2px;
  }
  .header-contact {
    gap: 1px;
    margin-right: auto;
  }
  .header-contact a {
    font-size: 0.6875rem;
    gap: 4px;
  }
  .header-contact-label {
    display: none;
  }
  .landing-header .nav {
    flex-wrap: wrap;
  }
  .landing-header-actions {
    order: 3;
  }
}

/* Korrektur: Telefonnummern ausschließlich in der dunklen Aubergine-Topbar, nicht neben dem Logo */
.topbar {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.92);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 8px 0;
  flex-wrap: wrap;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  min-width: 0;
  color: rgba(255, 255, 255, 0.88);
}
.topbar-separator,
.topbar-contact-separator {
  color: rgba(255, 255, 255, 0.45);
}
.topbar-contact-separator {
  margin: 0;
}
.topbar-contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  flex-wrap: wrap;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.96);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
}
.topbar-contact a {
  color: rgba(255, 255, 255, 0.96);
  text-decoration: none;
  white-space: nowrap;
}
.topbar-contact a:hover {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.header-contact {
  display: none ;
}
@media (max-width: 48.75rem) {
  .topbar {
    display: block ;
    font-size: 0.75rem;
  }
  .topbar-inner {
    justify-content: center;
    text-align: center;
    padding: 7px 0;
    gap: 6px;
  }
  .topbar-left {
    display: none;
  }
  .topbar-contact {
    width: 100%;
    justify-content: center;
    margin-left: 0;
    gap: 14px;
    font-size: 0.75rem;
    font-weight: 600;
  }
}
@media (max-width: 23.75rem) {
  .topbar-contact {
    gap: 0;
    font-size: 0.6875rem;
  }
}


/* Best-practice conversion polish 2026-05 */
:root {
  --shadow-soft: 0 10px 30px rgba(52, 32, 47, 0.05);
  --shadow-lift: 0 18px 42px rgba(52, 32, 47, 0.09);
}

.topbar-inner {
  padding: 7px 0;
}
.topbar-left span {
  font-weight: 600;
}
.topbar-contact a:last-child {
  font-weight: 800;
}

.home-page .hero {
  padding-top: 54px;
}
.home-page .hero h1 {
  max-width: 780px;
}
.hero-checks {
  margin-top: 20px;
}
.trust-strip {
  padding: 24px 0 34px;
  background: #ffffff;
}
.trust-strip-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.trust-strip-item {
  min-height: 132px;
}

.inspection-section {
  padding: 62px 0;
  background: var(--bg);
}
.inspection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.inspection-card {
  background: var(--white);
  border: 0.0625rem solid var(--border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}
.inspection-card strong {
  display: block;
  color: var(--primary-dark);
  font-size: 1.125rem;
  margin-bottom: 8px;
}
.inspection-card span {
  color: var(--muted);
  font-size: 0.9375rem;
}

.services-focused {
  background: #ffffff;
}
.focus-services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.focus-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--white);
  border: 0.0625rem solid var(--border);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow-soft);
  min-height: 100%;
}
.focus-card--primary {
  background: linear-gradient(180deg, #FAF7F3 0%, #ffffff 100%);
  border-color: rgba(74,47,69,0.18);
  box-shadow: var(--shadow-lift);
}
.focus-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 62.4375rem;
  background: var(--bg-soft);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.focus-card h3 {
  margin: 0 0 12px;
  color: var(--primary-dark);
  font-size: 1.5rem;
  line-height: 1.18;
}
.focus-card p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.9375rem;
}
.focus-card .btn {
  margin-top: auto;
}
.compact-link-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  padding: 16px 18px;
  border: 0.0625rem solid var(--border);
  border-radius: 18px;
  background: var(--bg-soft);
  color: var(--muted);
}
.compact-link-row span {
  font-weight: 800;
  color: var(--primary-dark);
}
.compact-link-row a {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 62.4375rem;
  background: var(--white);
  border: 0.0625rem solid var(--border);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.875rem;
}

.cta-band--focused {
  background: var(--primary-dark);
}
.cta-band--focused .btn-primary.btn-on-dark {
  background: var(--white);
  color: var(--primary-dark);
  border-color: var(--white);
}
.cta-band--focused .btn-primary.btn-on-dark:hover {
  background: #EFE6EE;
}

.reassurance-box {
  margin: 18px 0 16px;
  padding: 16px 18px;
  border: 0.0625rem solid rgba(74,47,69,0.15);
  border-radius: 18px;
  background: #FAF7F3;
}
.reassurance-box strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 6px;
  font-size: 1rem;
}
.reassurance-box p {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
}

/* Calmer landing page cards: less playful, more advisory */
.lead-cost-card strong,
.coverage-card strong {
  letter-spacing: -0.01em;
}

@media (max-width: 1100px) {
  .trust-strip-grid,
  .inspection-grid,
  .focus-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 48.75rem) {
  .topbar-left { display: none; }
  .topbar-contact { gap: 10px; }
  .trust-strip-grid,
  .inspection-grid,
  .focus-services-grid {
    grid-template-columns: 1fr;
  }
  .trust-strip-item {
    min-height: 0;
  }
  .focus-card .btn,
  .compact-link-row a {
    width: 100%;
  }
}

/* Korrektur 2026-05-28: Foto unverzerrt, Leistungskarten mit langen Überschriften stabil */
.profile-visual {
  align-self: start;
  height: auto;
}
.profile-visual picture {
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, #FAF7F3 0%, #ffffff 100%);
}
.profile-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center top;
  border-radius: 24px;
}
.focus-services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.focus-card,
.focus-card h3,
.focus-card p,
.focus-card .btn {
  min-width: 0;
}
.focus-card h3 {
  overflow-wrap: anywhere;
  hyphens: auto;
}
.focus-card .btn {
  max-width: 100%;
  white-space: normal;
  text-align: center;
  line-height: 1.25;
  overflow-wrap: anywhere;
}
@media (max-width: 48.75rem) {
  .focus-services-grid {
    grid-template-columns: 1fr;
  }
}


.focus-card .btn {
  background: var(--primary);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 18px 34px rgba(74, 47, 69, 0.18);
}
.focus-card .btn:hover {
  background: var(--primary-dark);
  color: #ffffff;
  transform: translateY(-1px);
}


/* Hero-Section Startseite: Hintergrund exakt an Portrait-Höhe gekoppelt */
.home-page .hero-home-abstract {
  --hero-bg-height: calc(31.25rem + 3.375rem + 0.625rem);
  position: relative;
  isolation: isolate;
  overflow: visible;
  padding: 3.375rem 0 0.625rem;
  background: #ffffff;
}

.home-page .hero-home-abstract::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: var(--hero-bg-height);
  z-index: -2;
  background-image: url('home-bg.webp');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0.96;
}

.home-page .hero-home-abstract::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(var(--hero-bg-height) - 2rem);
  height: 2rem;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(250, 247, 243, 0) 0%,
    rgba(255, 255, 255, 0.72) 68%,
    #ffffff 100%
  );
}

.home-page .hero-home-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.875rem;
  align-items: end;
  min-height: 0;
}

.home-page .hero-copy {
  position: relative;
  z-index: 2;
  max-width: 40.625rem;
  padding: 0.5rem 0 0;
}

.home-page .hero-copy .eyebrow {
  background: rgba(255,255,255,0.72);
  border: 0.0625rem solid rgba(74,47,69,0.10);
  backdrop-filter: blur(0.5rem);
}

.home-page .hero-portrait-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: auto;
  padding-top: 0.5rem;
}

.home-page .hero-portrait-wrap::after {
  content: none;
  display: none;
}

.home-page .hero-portrait-picture {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
}

.home-page .hero-portrait {
  position: relative;
  width: min(72vw, 22.5rem);
  max-height: 31.25rem;
  object-fit: contain;
  object-position: center bottom;
  transform: none;
  filter: none;
  background: transparent;
}

@media (min-width: 48.8125rem) {
  .home-page .hero-home-abstract {
    --hero-bg-height: calc(43.125rem + 4.875rem + 0.625rem);
    padding: 4.875rem 0 0.625rem;
  }

  .home-page .hero-home-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2.75rem;
    min-height: 0;
    align-items: end;
  }

  .home-page .hero-copy {
    padding: 1.75rem 0 4.375rem;
  }

  .home-page .hero-portrait-wrap {
    min-height: auto;
    justify-content: flex-end;
  }

  .home-page .hero-portrait {
    width: min(45vw, 31.875rem);
    max-height: 43.125rem;
    transform: none;
  }
}

@media (max-width: 48.75rem) {
  .home-page .hero-home-abstract {
    --hero-bg-height: calc(26.25rem + 3.375rem + 0.625rem);
  }

  .home-page .hero-home-abstract::before {
    background-position: left top;
  }

  .home-page .hero-home-grid {
    text-align: left;
  }

  .home-page .hero-portrait-wrap {
    margin-top: -0.5rem;
  }

  .home-page .hero-portrait {
    width: min(68vw, 19.375rem);
    max-height: 26.25rem;
    transform: none;
  }
}



/* Utility spacing classes replacing previous inline styles */
.section-head--tight {
  margin-bottom: 1.25rem;
}

.page-actions--spaced,
.compliance-note--spaced {
  margin-top: 1.125rem;
}


/* Landingpage-Kacheln Startseite: Bildhintergrund wie bei Tierkrankenversicherung */
.focus-card--image {
  position: relative;
  overflow: hidden;
  min-height: 23.75rem;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.22);
  background-color: #2F1D2C;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 1.5rem 4.375rem rgba(52, 32, 47, 0.18);
}

.focus-card--image .focus-kicker {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  border: 0.0625rem solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(0.375rem);
  -webkit-backdrop-filter: blur(0.375rem);
}

.focus-card--image h3,
.focus-card--image p {
  color: #ffffff;
  text-shadow: 0 0.125rem 1rem rgba(47, 29, 44, 0.34);
}

.focus-card--image p {
  color: rgba(255, 255, 255, 0.92);
}

.focus-card--image .btn-primary {
  background: #ffffff;
  color: var(--primary-dark);
  border-color: #ffffff;
  box-shadow: 0 0.75rem 1.75rem rgba(47, 29, 44, 0.18);
}

.focus-card--image .btn-primary:hover {
  background: #EFE6EE;
  border-color: #EFE6EE;
  color: var(--primary-dark);
}

.focus-card--wohngebaeude {
  background-image:
    linear-gradient(180deg, rgba(47, 29, 44, 0.72) 0%, rgba(47, 29, 44, 0.64) 48%, rgba(47, 29, 44, 0.82) 100%),
    url('landing-wohngebaeude.webp');
  background-position: center center;
}

.focus-card--tier {
  background-image:
    linear-gradient(180deg, rgba(47, 29, 44, 0.72) 0%, rgba(47, 29, 44, 0.64) 48%, rgba(47, 29, 44, 0.82) 100%),
    url('tierkrankenversicherung-hero.webp');
  background-position: 42% center;
}

.focus-card--privat {
  background-image:
    linear-gradient(180deg, rgba(47, 29, 44, 0.72) 0%, rgba(47, 29, 44, 0.64) 48%, rgba(47, 29, 44, 0.82) 100%),
    url('landing-privat-familie.webp');
  background-position: 58% center;
}

.focus-card--gewerbe {
  background-image:
    linear-gradient(180deg, rgba(47, 29, 44, 0.72) 0%, rgba(47, 29, 44, 0.64) 48%, rgba(47, 29, 44, 0.82) 100%),
    url('landing-gewerbe.webp');
  background-position: center center;
}

.focus-card--vorsorge {
  background-image:
    linear-gradient(180deg, rgba(47, 29, 44, 0.72) 0%, rgba(47, 29, 44, 0.64) 48%, rgba(47, 29, 44, 0.82) 100%),
    url('landing-gesundheit-vorsorge.webp');
  background-position: 62% center;
}

.focus-card--kfz {
  background-image:
    linear-gradient(180deg, rgba(47, 29, 44, 0.72) 0%, rgba(47, 29, 44, 0.64) 48%, rgba(47, 29, 44, 0.82) 100%),
    url('landing-kfz.webp');
  background-position: 64% center;
}

@media (max-width: 48.75rem) {
  .focus-card--image {
    min-height: 20rem;
    padding: 1.5rem;
  }
}


/* Farbwelt Luise Heinrichs: feminin, seriös, kontraststark und ohne Blau */
.btn-primary:hover,
.focus-card .btn:hover {
  background: var(--primary-dark);
  color: #ffffff;
}
.btn-secondary:hover,
.subnav a:hover,
.compact-link-row a:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--primary-dark);
}
.card-icon,
.page-icon {
  background: linear-gradient(180deg, rgba(155, 120, 149, 0.14) 0%, rgba(155, 120, 149, 0.07) 100%);
  color: var(--primary);
  border-color: rgba(155, 120, 149, 0.18);
}
.hero-checks li::before {
  background: rgba(155, 120, 149, 0.14);
  border-color: rgba(155, 120, 149, 0.24);
}
.hero-checks li::after {
  border-color: var(--accent);
}
.focus-card--image .btn-primary:hover,
.cta-band--focused .btn-primary.btn-on-dark:hover {
  background: var(--accent-soft);
  border-color: var(--accent-soft);
  color: var(--primary-dark);
}
.home-page .hero-home-abstract::after {
  background: linear-gradient(
    to bottom,
    rgba(250, 247, 243, 0) 0%,
    rgba(255, 255, 255, 0.72) 68%,
    #ffffff 100%
  );
}


/* Mobile landing CTA cleanup: desktop remains unchanged */
.footer-cookie-settings {
  display: none;
}

@media (max-width: 48.75rem) {
  body.ad-landing-page .landing-header {
    position: static;
    top: auto;
  }

  body.ad-landing-page .heinrichs-consent__reopen,
  body.home-page .heinrichs-consent__reopen {
    display: none !important;
  }

  body.ad-landing-page .footer-cookie-settings,
  body.home-page .footer-cookie-settings {
    display: inline-flex;
  }

  body.ad-landing-page .wa-float {
    bottom: 96px;
  }

  body.ad-landing-page.heinrichs-consent-visible .sticky-lead-bar {
    display: none;
  }
}

@media (max-width: 640px) {
  body.ad-landing-page {
    padding-bottom: 92px !important;
  }

  body.ad-landing-page .sticky-lead-inner {
    flex-direction: row !important;
    align-items: stretch;
  }

  body.ad-landing-page .sticky-lead-inner .btn {
    width: auto !important;
    flex: 1 1 0;
    min-height: 50px;
    padding: 10px 12px;
    font-size: 0.85rem;
    line-height: 1.18;
    white-space: normal;
  }
}
