/* =========================================================================
   AUTARK Sticky-Mobile-CTA — Bottom-Bar Styles
   QW3 (2026-04-30): Conversion-Bar fixed bottom auf Mobile-Pages.
   ========================================================================= */
#autark-sticky-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(14, 22, 32, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(56, 189, 248, 0.2);
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.35);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
#autark-sticky-mobile .asm-cta {
  flex: 1;
  padding: 14px 16px;
  background: linear-gradient(135deg, #38BDF8, #0EA5E9);
  color: #0E1620;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.2;
  box-shadow: 0 4px 16px rgba(56, 189, 248, 0.35);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
#autark-sticky-mobile .asm-cta:hover,
#autark-sticky-mobile .asm-cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(56, 189, 248, 0.5);
}
#autark-sticky-mobile .asm-tel {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.32);
  border-radius: 12px;
  text-decoration: none;
  color: #38BDF8;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.15s ease;
}
#autark-sticky-mobile .asm-tel:hover,
#autark-sticky-mobile .asm-tel:focus-visible {
  background: rgba(56, 189, 248, 0.22);
  transform: translateY(-1px);
}
@media (min-width: 769px) {
  #autark-sticky-mobile {
    display: none !important;
  }
}
/* Damit Footer-Content nicht von der Bar verdeckt wird */
@media (max-width: 768px) {
  body {
    padding-bottom: 84px !important;
  }
}
@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
}

/* =========================================================================
   PHASE-E: Mobile Tel-Banner direkt unter Header (Andrea-Persona / Senioren)
   - Nur Mobile (≤768px) sichtbar
   - Klickbar (Anker, kein body::before)
   - Sticky unter dem 64-px-Header
   ========================================================================= */
#autark-tel-banner-mobile {
  display: none;
}
@media (max-width: 768px) {
  #autark-tel-banner-mobile {
    display: block;
    background: linear-gradient(135deg, #38BDF8, #0EA5E9);
    color: #0E1620;
    text-align: center;
    padding: 10px 16px;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 64px;
    z-index: 39;
    transition: filter 0.15s ease, transform 0.15s ease;
  }
  #autark-tel-banner-mobile strong {
    font-weight: 800;
    text-decoration: underline;
  }
  #autark-tel-banner-mobile:hover,
  #autark-tel-banner-mobile:focus-visible {
    filter: brightness(1.05);
  }
  #autark-tel-banner-mobile:active {
    transform: scale(0.99);
  }
}
