/* =============================================================
   SONJAS TIERTHERAPIE – FUTTERBERATUNG LANDING PAGE
   Google Ads Landing Page – Mobile-First, Conversion-optimiert.
   ============================================================= */


/* ============================================================
   VARIABLEN
   ============================================================ */
:root {
  --lp-blue:        #0777BF;
  --lp-blue-dark:   #044A77;
  --lp-teal:        #63C0E3;
  --lp-teal-pale:   #E0F4FB;
  --lp-orange:      #FBBC42;
  --lp-orange-dark: #e6a72e;
  --lp-green:       #25D366;
  --lp-green-dark:  #1da851;
  --lp-gray:        #7A7A7A;
  --lp-gray-light:  #F5F7FA;
  --lp-text:        #333333;
  --lp-text-light:  #555555;
  --lp-white:       #ffffff;
  --lp-bg:          #FCFCFC;
  --lp-ff-heading:  'DM Serif Display', serif;
  --lp-ff-body:     'Nunito Sans', sans-serif;
  --lp-container:   1080px;
  --lp-radius:      0.5rem;
  --lp-shadow:      0 2px 12px rgba(0,0,0,0.08);
  --lp-shadow-lg:   0 8px 30px rgba(0,0,0,0.12);
}


/* ============================================================
   RESET & GLOBALE BASIS
   ============================================================ */
body.st-landing {
  margin: 0;
  padding: 0 !important;
  background-color: var(--lp-bg);
  font-family: var(--lp-ff-body);
  color: var(--lp-text);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.st-landing *, body.st-landing *::before, body.st-landing *::after {
  box-sizing: border-box;
}
body.st-landing a { text-decoration: none; color: inherit; }
body.st-landing img { max-width: 100%; height: auto; display: block; }
body.st-landing ul { list-style: none; padding: 0; margin: 0; }
body.st-landing p { margin-top: 0; margin-bottom: 1rem; }
body.st-landing p:last-child { margin-bottom: 0; }
body.st-landing h1, body.st-landing h2, body.st-landing h3 {
  font-family: var(--lp-ff-heading);
  line-height: 1.2;
  margin-top: 0; margin-bottom: 0;
}

/* Astra-Elemente ausblenden */
body.st-landing .site-header, body.st-landing #masthead,
body.st-landing .ast-primary-header-bar,
body.st-landing .site-footer, body.st-landing #colophon,
body.st-landing .wp-site-blocks > header,
body.st-landing .wp-site-blocks > footer { display: none !important; }

html { scroll-behavior: smooth; }


/* ============================================================
   CONTAINER
   ============================================================ */
.st-lp-container {
  max-width: var(--lp-container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}


/* ============================================================
   BUTTONS
   ============================================================ */
.st-lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  border-radius: var(--lp-radius);
  font-family: var(--lp-ff-body);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.st-lp-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--lp-shadow);
}

/* WhatsApp (dunkel, gruen) – body.st-landing nötig um a{color:inherit} zu schlagen */
body.st-landing .st-lp-btn--whatsapp {
  background-color: var(--lp-green);
  color: var(--lp-white);
  border-color: var(--lp-green);
  font-size: 1.05rem;
  padding: 1rem 2rem;
}
body.st-landing .st-lp-btn--whatsapp:hover {
  background-color: var(--lp-green-dark);
  border-color: var(--lp-green-dark);
  color: var(--lp-white);
}

/* WhatsApp (hell, auf dunklem Hintergrund) */
body.st-landing .st-lp-btn--whatsapp-light {
  background-color: var(--lp-white);
  color: var(--lp-green);
  border-color: var(--lp-white);
  font-size: 1.05rem;
  padding: 1rem 2rem;
}
body.st-landing .st-lp-btn--whatsapp-light:hover {
  background-color: var(--lp-teal-pale);
  border-color: var(--lp-teal-pale);
  color: var(--lp-green-dark);
}

/* Telefon (Hero, halbdurchsichtig) */
body.st-landing .st-lp-btn--phone-hero {
  background-color: rgba(255,255,255,0.15);
  color: var(--lp-white);
  border-color: rgba(255,255,255,0.4);
}
body.st-landing .st-lp-btn--phone-hero:hover {
  background-color: rgba(255,255,255,0.25);
  color: var(--lp-white);
}

/* Telefon (hell, auf dunklem Hintergrund) */
body.st-landing .st-lp-btn--phone-light {
  background-color: transparent;
  color: var(--lp-white);
  border-color: rgba(255,255,255,0.5);
}
body.st-landing .st-lp-btn--phone-light:hover {
  background-color: rgba(255,255,255,0.15);
  color: var(--lp-white);
  border-color: rgba(255,255,255,0.7);
}

/* Zentrierter Button */
.st-lp-btn--centered {
  display: flex;
  margin: 2rem auto 0;
  width: fit-content;
}


/* ============================================================
   SECTION TITLES
   ============================================================ */
.st-lp-section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--lp-blue-dark);
  text-align: center !important;
  margin-bottom: 0.75rem;
}
.st-lp-section-title--light {
  color: var(--lp-white);
}
.st-lp-section-title--left {
  text-align: left !important;
}
.st-lp-section-intro {
  text-align: center !important;
  color: var(--lp-text-light);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}


/* ============================================================
   HEADER (minimal)
   ============================================================ */
.st-lp-header {
  background: var(--lp-white);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}
.st-lp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  min-height: 60px;
}
body.st-landing .st-lp-header__logo {
  height: 80px !important;
  width: auto !important;
  max-height: 80px !important;
  object-fit: contain;
}
.st-lp-header__brand {
  font-family: var(--lp-ff-heading);
  font-size: 1.25rem;
  color: var(--lp-blue-dark);
}
.st-lp-header__brand span {
  color: var(--lp-teal);
}
/* Kontakt-Gruppe rechts */
.st-lp-header__contact {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
body.st-landing .st-lp-header__phone,
body.st-landing .st-lp-header__email {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--lp-blue-dark);
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.2s;
}
body.st-landing .st-lp-header__phone:hover,
body.st-landing .st-lp-header__email:hover {
  color: var(--lp-blue);
}
/* Mobile: nur Icons, Text versteckt */
.st-lp-header__phone span,
.st-lp-header__email span {
  display: none;
}
@media (min-width: 600px) {
  .st-lp-header__phone span {
    display: inline;
  }
}
@media (min-width: 768px) {
  .st-lp-header__email span {
    display: inline;
  }
}


/* ============================================================
   HERO
   ============================================================ */
.st-lp-hero {
  background: linear-gradient(135deg, var(--lp-blue-dark) 0%, var(--lp-blue) 60%, var(--lp-teal) 100%);
  color: var(--lp-white);
  padding: 3.5rem 0 3rem;
  text-align: center !important;
}
/* Eyebrow – Hinweis über der Headline */
.st-lp-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--lp-white);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

.st-lp-hero__h1 {
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  color: var(--lp-white);
  margin-bottom: 1.25rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center !important;
}
.st-lp-hero__h1-break {
  display: block;
}
.st-lp-hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  opacity: 0.92;
  max-width: 580px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  text-align: center !important;
}
.st-lp-hero__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
@media (min-width: 500px) {
  .st-lp-hero__ctas {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }
}

/* Trust Badges */
.st-lp-hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 1.5rem;
  font-size: 0.875rem;
  opacity: 0.85;
}
.st-lp-hero__trust-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.5);
  display: none;
}
@media (min-width: 500px) {
  .st-lp-hero__trust-sep {
    display: block;
  }
}


/* Hero: Zwei-Spalten-Layout ab Tablet */
@media (min-width: 768px) {
  .st-lp-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  .st-lp-hero__text,
  .st-lp-hero__text .st-lp-hero__h1,
  .st-lp-hero__text .st-lp-hero__sub {
    text-align: left !important;
    margin-left: 0;
    max-width: none;
  }
  .st-lp-hero__text .st-lp-hero__ctas {
    justify-content: flex-start;
  }
  .st-lp-hero__text .st-lp-hero__trust {
    justify-content: flex-start;
  }
}

/* Hero-Formular-Spalte */
.st-lp-hero__form-col {
  background: rgba(255, 255, 255, 0.13);
  border-radius: var(--lp-radius);
  padding: 1.75rem 1.5rem;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.st-lp-hero__form-heading {
  color: var(--lp-white);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 1rem;
  text-align: center;
}
/* Formularfelder im Hero hell färben */
.st-lp-hero__form-col .wpcf7-form input:not([type="submit"]),
.st-lp-hero__form-col .wpcf7-form textarea,
.st-lp-hero__form-col .wpcf7-form select {
  background: rgba(255, 255, 255, 0.95) !important;
  color: var(--lp-text) !important;
  border-color: transparent !important;
}
.st-lp-hero__form-col .wpcf7-form input[type="submit"] {
  width: 100%;
}


/* ============================================================
   SYMPTOME / PROBLEME
   ============================================================ */
.st-lp-symptoms {
  padding: 4rem 0;
  background-color: var(--lp-bg);
}
.st-lp-symptoms__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
@media (min-width: 600px) {
  .st-lp-symptoms__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 900px) {
  .st-lp-symptoms__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.st-lp-symptom-card {
  background: var(--lp-white);
  border-radius: var(--lp-radius);
  padding: 1.5rem;
  box-shadow: var(--lp-shadow);
  border-left: 4px solid var(--lp-orange);
  transition: transform 0.2s, box-shadow 0.2s;
}
.st-lp-symptom-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--lp-shadow-lg);
}
.st-lp-symptom-card__icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.5rem;
}
.st-lp-symptom-card h3 {
  font-family: var(--lp-ff-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--lp-blue-dark);
  margin-bottom: 0.4rem;
}
.st-lp-symptom-card p {
  font-size: 0.9rem;
  color: var(--lp-text-light);
  margin: 0;
  line-height: 1.55;
}

.st-lp-symptoms__hint {
  text-align: center !important;
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--lp-text);
  line-height: 1.6;
}
.st-lp-symptoms__hint strong {
  color: var(--lp-blue-dark);
}


/* ============================================================
   LÖSUNG
   ============================================================ */
.st-lp-solution {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--lp-blue-dark) 0%, var(--lp-blue) 100%);
  color: var(--lp-white);
}
.st-lp-solution__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center !important;
}
.st-lp-solution__text {
  font-size: 1.05rem;
  opacity: 0.92;
  line-height: 1.7;
  text-align: center !important;
}
.st-lp-solution__text em {
  display: block;
  font-size: 1.2rem;
  margin-top: 0.5rem;
  opacity: 1;
  font-style: italic;
}


/* ============================================================
   3 SCHRITTE
   ============================================================ */
.st-lp-steps {
  padding: 4rem 0;
  background-color: var(--lp-gray-light);
}
.st-lp-steps__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 700px) {
  .st-lp-steps__grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
  }
}

.st-lp-step {
  background: var(--lp-white);
  border-radius: var(--lp-radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--lp-shadow);
  position: relative;
}
.st-lp-step__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lp-blue) 0%, var(--lp-teal) 100%);
  color: var(--lp-white);
  font-family: var(--lp-ff-heading);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.st-lp-step__title {
  font-family: var(--lp-ff-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--lp-blue-dark);
  margin-bottom: 0.75rem;
}
.st-lp-step__text {
  font-size: 0.9rem;
  color: var(--lp-text-light);
  margin: 0;
  line-height: 1.6;
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.st-lp-testimonials {
  padding: 4rem 0;
  background-color: var(--lp-bg);
}
.st-lp-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 700px) {
  .st-lp-testimonials__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.st-lp-testimonial {
  background: var(--lp-white);
  border-radius: var(--lp-radius);
  padding: 1.75rem;
  box-shadow: var(--lp-shadow);
}
.st-lp-testimonial__stars {
  color: var(--lp-orange);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}
.st-lp-testimonial__text {
  font-size: 0.95rem;
  color: var(--lp-text);
  line-height: 1.65;
  font-style: italic;
  margin: 0 0 1.25rem;
  border: none;
  padding: 0;
}
.st-lp-testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.st-lp-testimonial__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lp-teal) 0%, var(--lp-blue) 100%);
  color: var(--lp-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.st-lp-testimonial__author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--lp-blue-dark);
}
.st-lp-testimonial__author span {
  display: block;
  font-size: 0.8rem;
  color: var(--lp-gray);
}

.st-lp-testimonials__count {
  text-align: center !important;
  font-size: 1.1rem;
  color: var(--lp-blue-dark);
}


/* ============================================================
   ÜBER MICH
   ============================================================ */
.st-lp-about {
  padding: 4rem 0;
  background-color: var(--lp-bg);
}
.st-lp-about__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 700px) {
  .st-lp-about__inner {
    grid-template-columns: 280px 1fr;
    gap: 3rem;
  }
}

.st-lp-about__photo {
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow-lg);
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}
.st-lp-about__photo-placeholder {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lp-teal) 0%, var(--lp-blue) 100%);
  color: var(--lp-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--lp-ff-heading);
  font-size: 2rem;
  margin: 0 auto;
}

.st-lp-about__text p {
  color: var(--lp-text);
  font-size: 1rem;
  line-height: 1.7;
}

.st-lp-about__quals {
  margin-top: 1.25rem;
}
.st-lp-about__quals li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--lp-text);
}
.st-lp-about__quals li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--lp-orange);
}

/* Video */
.st-lp-about__video {
  margin-top: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.st-lp-video-wrap {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow-lg);
}
.st-lp-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/* ============================================================
   FAQ
   ============================================================ */
.st-lp-faq {
  padding: 4rem 0;
  background-color: var(--lp-gray-light);
}
.st-lp-faq__list {
  max-width: 700px;
  margin: 0 auto;
}
.st-lp-faq-item {
  background: var(--lp-white);
  border-radius: var(--lp-radius);
  margin-bottom: 0.75rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  overflow: hidden;
}
.st-lp-faq-item__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--lp-ff-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--lp-blue-dark);
  text-align: left;
  line-height: 1.4;
  transition: background-color 0.15s;
}
.st-lp-faq-item__toggle:hover {
  background-color: var(--lp-gray-light);
}
.st-lp-faq-item__chevron {
  flex-shrink: 0;
  transition: transform 0.25s;
  color: var(--lp-blue);
}
.st-lp-faq-item.is-open .st-lp-faq-item__chevron {
  transform: rotate(180deg);
}
.st-lp-faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.st-lp-faq-item__answer p {
  padding: 0 1.25rem 1.25rem;
  color: var(--lp-text-light);
  font-size: 0.95rem;
  line-height: 1.65;
}


/* ============================================================
   FINAL CTA
   ============================================================ */
.st-lp-final-cta {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--lp-blue-dark) 0%, var(--lp-blue) 60%, var(--lp-teal) 100%);
  color: var(--lp-white);
  text-align: center !important;
}
.st-lp-final-cta h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--lp-white);
  margin-bottom: 0.75rem;
  text-align: center !important;
}
.st-lp-final-cta p {
  font-size: 1.1rem;
  opacity: 0.92;
  max-width: 520px;
  margin: 0 auto 2rem;
  text-align: center !important;
}
.st-lp-final-cta__btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 500px) {
  .st-lp-final-cta__btns {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }
}


/* ============================================================
   FINAL CTA – KONTAKTFORMULAR
   ============================================================ */
.st-lp-final-cta__form {
  max-width: 520px;
  margin: 2.5rem auto 0;
  background: rgba(255,255,255,0.1);
  border-radius: var(--lp-radius);
  padding: 1.5rem;
}
.st-lp-final-cta__form-intro {
  text-align: center !important;
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 1rem;
}

/* CF7 Formular-Styling im dunklen CTA-Bereich */
.st-lp-final-cta .wpcf7 input[type="text"],
.st-lp-final-cta .wpcf7 input[type="email"],
.st-lp-final-cta .wpcf7 input[type="tel"],
.st-lp-final-cta .wpcf7 textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--lp-radius);
  background: rgba(255,255,255,0.15);
  color: var(--lp-white);
  font-family: var(--lp-ff-body);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  transition: border-color 0.2s, background-color 0.2s;
}
.st-lp-final-cta .wpcf7 input::placeholder,
.st-lp-final-cta .wpcf7 textarea::placeholder {
  color: rgba(255,255,255,0.6);
}
.st-lp-final-cta .wpcf7 input:focus,
.st-lp-final-cta .wpcf7 textarea:focus {
  outline: none;
  border-color: var(--lp-orange);
  background: rgba(255,255,255,0.2);
}
.st-lp-final-cta .wpcf7 textarea {
  min-height: 100px;
  resize: vertical;
}
.st-lp-final-cta .wpcf7 input[type="submit"] {
  width: 100%;
  padding: 0.9rem 1.8rem;
  border: none;
  border-radius: var(--lp-radius);
  background-color: var(--lp-orange);
  color: var(--lp-blue-dark);
  font-family: var(--lp-ff-body);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.15s;
}
.st-lp-final-cta .wpcf7 input[type="submit"]:hover {
  background-color: var(--lp-orange-dark);
  transform: translateY(-2px);
}
/* CF7 Labels im dunklen Bereich */
.st-lp-final-cta .wpcf7 label {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.25rem;
}
/* CF7 Erfolgsmeldung */
.st-lp-final-cta .wpcf7-response-output {
  color: var(--lp-white);
  border-color: rgba(255,255,255,0.3);
  margin-top: 1rem;
}


/* ============================================================
   FOOTER (minimal)
   ============================================================ */
.st-lp-footer {
  background: #0a1e2e;
  color: rgba(255,255,255,0.6);
  padding: 1.25rem 0;
  font-size: 0.85rem;
}
.st-lp-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.st-lp-footer__links {
  display: flex;
  gap: 1.25rem;
}
.st-lp-footer__links a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.st-lp-footer__links a:hover {
  color: var(--lp-orange);
}


/* ============================================================
   STICKY MOBILE CTA BAR
   ============================================================ */
.st-lp-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--lp-white);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
  display: flex;
  padding: 0.6rem 0.75rem;
  gap: 0.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.st-lp-sticky.is-visible {
  transform: translateY(0);
}
.st-lp-sticky__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 0.5rem;
  border-radius: var(--lp-radius);
  font-family: var(--lp-ff-body);
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  transition: background-color 0.2s;
}
.st-lp-sticky__btn--wa {
  background-color: var(--lp-green);
  color: var(--lp-white);
}
.st-lp-sticky__btn--wa:hover {
  background-color: var(--lp-green-dark);
  color: var(--lp-white);
}
.st-lp-sticky__btn--phone {
  background-color: var(--lp-blue-dark);
  color: var(--lp-white);
}
.st-lp-sticky__btn--phone:hover {
  background-color: var(--lp-blue);
  color: var(--lp-white);
}

/* Sticky Bar nur auf Mobile zeigen */
@media (min-width: 768px) {
  .st-lp-sticky {
    display: none !important;
  }
}

/* Platz fuer die Sticky Bar auf Mobile */
@media (max-width: 767px) {
  .st-lp-footer {
    padding-bottom: 5rem;
  }
}


/* ============================================================
   ANIMATIONEN (dezent, performant)
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .st-lp-symptom-card,
  .st-lp-step,
  .st-lp-testimonial {
    opacity: 0;
    transform: translateY(20px);
    animation: lpFadeUp 0.5s ease forwards;
  }
  /* Staffelung */
  .st-lp-symptom-card:nth-child(1), .st-lp-step:nth-child(1), .st-lp-testimonial:nth-child(1) { animation-delay: 0.1s; }
  .st-lp-symptom-card:nth-child(2), .st-lp-step:nth-child(2), .st-lp-testimonial:nth-child(2) { animation-delay: 0.2s; }
  .st-lp-symptom-card:nth-child(3), .st-lp-step:nth-child(3), .st-lp-testimonial:nth-child(3) { animation-delay: 0.3s; }
  .st-lp-symptom-card:nth-child(4) { animation-delay: 0.4s; }
  .st-lp-symptom-card:nth-child(5) { animation-delay: 0.5s; }
  .st-lp-symptom-card:nth-child(6) { animation-delay: 0.6s; }
}

@keyframes lpFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ============================================================
   DRUCKEN – keine Sticky Bar, keine Schatten
   ============================================================ */
@media print {
  .st-lp-sticky,
  .st-lp-header { display: none !important; }
  .st-lp-symptom-card,
  .st-lp-step,
  .st-lp-testimonial { box-shadow: none; border: 1px solid #ddd; }
}


/* ============================================================
   ASTRA OVERRIDE – Zentrierung erzwingen
   Astra setzt text-align auf Paragraphen/Headings zurück.
   Dieser Block am Ende überschreibt alles mit höchster Spezifität.
   ============================================================ */

/* Sektionen die KOMPLETT zentriert sein sollen */
/* Hero: nur auf Mobile zentrieren – ab 768px übernimmt das Grid-Layout */
@media (max-width: 767px) {
  html body.st-landing .st-lp-hero,
  html body.st-landing .st-lp-hero h1,
  html body.st-landing .st-lp-hero p,
  html body.st-landing .st-lp-hero .st-lp-hero__sub {
    text-align: center !important;
  }
}
/* Nicht-Hero Sektionen immer zentriert */
html body.st-landing .st-lp-solution,
html body.st-landing .st-lp-solution__inner,
html body.st-landing .st-lp-solution__inner p,
html body.st-landing .st-lp-final-cta,
html body.st-landing .st-lp-final-cta h2,
html body.st-landing .st-lp-final-cta p {
  text-align: center !important;
}

/* Sektions-Titel und Intros (immer zentriert) */
html body.st-landing .st-lp-section-title,
html body.st-landing .st-lp-section-intro,
html body.st-landing .st-lp-symptoms__hint,
html body.st-landing .st-lp-symptoms__hint strong,
html body.st-landing .st-lp-testimonials__count,
html body.st-landing .st-lp-testimonials__count strong {
  text-align: center !important;
}

/* Step-Karten zentriert */
html body.st-landing .st-lp-step {
  text-align: center !important;
}
html body.st-landing .st-lp-step__title,
html body.st-landing .st-lp-step__text {
  text-align: center !important;
}

/* FAQ Titel zentriert */
html body.st-landing .st-lp-faq .st-lp-section-title {
  text-align: center !important;
}

/* Über-mich Titel bleibt links */
html body.st-landing .st-lp-section-title--left {
  text-align: left !important;
}

/* Karten-Inhalte (Symptome, Testimonials) bleiben links */
html body.st-landing .st-lp-symptom-card h3,
html body.st-landing .st-lp-symptom-card p,
html body.st-landing .st-lp-testimonial__text,
html body.st-landing .st-lp-about__text p,
html body.st-landing .st-lp-faq-item__answer p {
  text-align: left !important;
}
