/* =============================================================
   SONJAS TIERTHERAPIE – FUTTERBERATUNG V2 LANDING PAGE
   Design: passend zur redesignten Startseite
   Zielgruppe: Hundehalter, die bereits Beratungen hatten
   ============================================================= */

/* ============================================================
   DESIGN TOKENS (identisch mit startseite.css)
   ============================================================ */
:root {
  --c-primary:     #044A77;
  --c-secondary:   #0777BF;
  --c-accent:      #FBBC42;
  --c-teal:        #63C0E3;
  --c-teal-pale:   #E0F4FB;
  --c-teal-muted:  #F0FAFE;
  --c-orange:      #FBBC42;
  --c-gray:        #7A7A7A;
  --c-gray-light:  #E0E0E0;
  --c-off-white:   #FCFCFC;
  --c-white:       #ffffff;
  --c-wa-green:    #25D366;
  --c-wa-hover:    #1da851;
  --ff-heading:    'DM Serif Display', serif;
  --ff-body:       'Nunito Sans', sans-serif;
  --container-max: 1080px;
  --radius:        0.5rem;
  --radius-lg:     1rem;
  --shadow:        0 2px 12px rgba(0,0,0,0.07);
  --shadow-lg:     0 8px 30px rgba(0,0,0,0.10);
  --section-py:    4.5rem;
}

/* ============================================================
   RESET & BASIS
   ============================================================ */
body.st-lp-v2 {
  margin: 0; padding: 0 !important;
  background: var(--c-off-white);
  font-family: var(--ff-body);
  color: var(--c-gray);
  line-height: 1.65;
}
.st-lp-v2 *, .st-lp-v2 *::before, .st-lp-v2 *::after { box-sizing: border-box; }
.st-lp-v2 a { text-decoration: none; }
.st-lp-v2 img { max-width: 100%; height: auto; display: block; }
.st-lp-v2 p { margin: 0; }
.st-lp-v2 h1, .st-lp-v2 h2, .st-lp-v2 h3, .st-lp-v2 h4 {
  font-family: var(--ff-heading);
  color: var(--c-primary);
  line-height: 1.2;
  margin: 0;
}

/* Astra-Elemente ausblenden */
.st-lp-v2 .site-header, .st-lp-v2 #masthead,
.st-lp-v2 .ast-primary-header-bar,
.st-lp-v2 .site-footer, .st-lp-v2 #colophon,
.st-lp-v2 #page, .st-lp-v2 .site, .st-lp-v2 .hfeed,
.st-lp-v2 #content, .st-lp-v2 .site-content,
.st-lp-v2 .ast-container, .st-lp-v2 .ast-separate-container,
.st-lp-v2 .ast-row, .st-lp-v2 #primary, .st-lp-v2 .content-area,
.st-lp-v2 main.site-main, .st-lp-v2 article, .st-lp-v2 .entry-content {
  max-width: 100% !important;
  width: 100% !important;
  margin-left: 0 !important; margin-right: 0 !important;
  padding-left: 0 !important; padding-right: 0 !important;
  float: none !important;
}

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

/* ============================================================
   SECTION LABEL (identisch mit Startseite)
   ============================================================ */
.v2-label {
  display: inline-flex; align-items: center; gap: 0.65rem;
  font-family: var(--ff-body);
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  margin-bottom: 0.75rem;
}
.v2-label--blue { color: var(--c-secondary); }
.v2-label--blue::before {
  content: ''; display: inline-block; width: 2rem; height: 2px;
  background: var(--c-secondary); flex-shrink: 0;
}
.v2-label--orange { color: var(--c-accent); }
.v2-label--orange::before {
  content: ''; display: inline-block; width: 2rem; height: 2px;
  background: var(--c-accent); flex-shrink: 0;
}
.v2-label--white { color: rgba(255,255,255,0.85); }
.v2-label--white::before {
  content: ''; display: inline-block; width: 2rem; height: 2px;
  background: var(--c-accent); flex-shrink: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.v2-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.85rem 1.75rem; border-radius: var(--radius);
  font-family: var(--ff-body); font-weight: 700; font-size: 0.9375rem;
  cursor: pointer; border: 2px solid transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
  line-height: 1; white-space: nowrap;
}
.v2-btn:hover { transform: translateY(-2px); }

/* Primary: Orange (Hauptaktion) */
.v2-btn--orange {
  background: var(--c-accent); color: var(--c-primary); border-color: var(--c-accent);
}
.v2-btn--orange:hover { background: #e6a72e; border-color: #e6a72e; color: var(--c-primary); }

/* WhatsApp */
.v2-btn--wa {
  background: var(--c-wa-green); color: #fff; border-color: var(--c-wa-green);
}
.v2-btn--wa:hover { background: var(--c-wa-hover); border-color: var(--c-wa-hover); color: #fff; }

/* Ghost (auf dunklem Hintergrund) */
.v2-btn--ghost {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.55);
}
.v2-btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* White (auf dunklem Hintergrund) */
.v2-btn--white {
  background: #fff; color: var(--c-primary); border-color: #fff;
}
.v2-btn--white:hover { background: var(--c-accent); border-color: var(--c-accent); color: var(--c-primary); }

/* ============================================================
   ①  HEADER (minimal)
   ============================================================ */
.v2-header {
  background: var(--c-primary);
  padding: 0.9rem 0;
}
.v2-header__inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.v2-header__logo-link { display: flex; align-items: center; }
.v2-header__logo { max-width: var(--st-logo-width, 120px) !important; height: auto !important; display: block; }
.v2-header__brand {
  font-family: var(--ff-heading); font-size: 1.25rem; color: #fff;
}
.v2-header__brand span { color: var(--c-accent); }
.v2-header__contact {
  display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
}
.v2-header__contact a {
  display: flex; align-items: center; gap: 0.4rem;
  color: rgba(255,255,255,0.85); font-size: 0.875rem;
  transition: color 0.2s;
}
.v2-header__contact a:hover { color: var(--c-accent); }
@media (max-width: 500px) {
  .v2-header__contact .v2-header__email { display: none; }
}

/* ============================================================
   ②  HERO
   ============================================================ */
.v2-hero {
  background: var(--c-primary);
  background-image: linear-gradient(135deg, #033a5e 0%, #044A77 60%, #0777BF 100%);
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
/* Dezentes Hintergrundmuster */
.v2-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 70% 50%, rgba(99,192,227,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.v2-hero__inner {
  position: relative; z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 768px) {
  .v2-hero__inner { grid-template-columns: 1fr 1fr; }
}

/* Linke Spalte: Text */
.v2-hero__text { color: #fff; }
.v2-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(251,188,66,0.18); border: 1px solid rgba(251,188,66,0.4);
  color: var(--c-accent); font-size: 0.8125rem; font-weight: 700;
  padding: 0.3rem 0.8rem; border-radius: 2rem;
  margin-bottom: 2.25rem !important; letter-spacing: 0.03em;
  font-family: var(--ff-body); text-transform: uppercase;
}
.v2-hero__h1 {
  font-family: var(--ff-heading);
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  color: #ffffff !important; opacity: 1; line-height: 1.15;
  margin-bottom: 1.75rem !important;
}
.v2-hero__sub {
  font-size: 1.0625rem; color: rgba(255,255,255,0.88);
  line-height: 1.65; margin-bottom: 2.5rem !important;
}
.v2-hero__sub strong { color: #fff; }
.v2-hero__ctas {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  margin-bottom: 2.25rem;
}
.v2-hero__trust {
  display: flex; flex-direction: column; gap: 0.5rem;
  font-size: 1.05rem; color: rgba(255,255,255,0.75);
}
.v2-hero__trust strong { color: #fff; }
.v2-hero__trust-sep {
  display: none;
}

/* Rechte Spalte: Formular */
.v2-hero__form-col {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  backdrop-filter: blur(6px);
}
.v2-hero__form-heading {
  font-family: var(--ff-heading);
  font-size: 1.3rem; color: #fff; text-align: center;
  margin-bottom: 1.25rem;
}
.v2-hero__form-col .wpcf7-form input:not([type="submit"]),
.v2-hero__form-col .wpcf7-form textarea,
.v2-hero__form-col .wpcf7-form select {
  background: rgba(255,255,255,0.95) !important;
  color: #333 !important;
  border-color: transparent !important;
  border-radius: var(--radius) !important;
}
.v2-hero__form-col .wpcf7-form input[type="submit"] {
  width: 100%;
  background: var(--c-accent) !important;
  color: var(--c-primary) !important;
  font-weight: 700 !important;
  border: none !important;
  border-radius: var(--radius) !important;
  font-size: 1rem !important;
  padding: 0.85rem 1.5rem !important;
  cursor: pointer;
  transition: background 0.2s;
}
.v2-hero__form-col .wpcf7-form input[type="submit"]:hover {
  background: #e6a72e !important;
}

@media (max-width: 767px) {
  .v2-hero { padding: 3rem 0 2.5rem; }
  .v2-hero__text { text-align: center; }
  .v2-hero__ctas { justify-content: center; }
  .v2-hero__trust { justify-content: center; }
  .v2-hero__eyebrow { margin-left: auto; margin-right: auto; }
}

/* ============================================================
   ③  SCHMERZPUNKTE "Kommt dir das bekannt vor?"
   ============================================================ */
.v2-pain {
  padding: var(--section-py) 0;
  background: var(--c-white);
}
.v2-section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.v2-section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--c-primary); margin-bottom: 0.75rem;
}
.v2-section-header p {
  font-size: 1.0625rem; color: var(--c-gray);
  max-width: 600px; margin: 0 auto; line-height: 1.7;
}
.v2-pain__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.v2-pain-card {
  background: var(--c-off-white);
  border-radius: var(--radius);
  border-left: 4px solid var(--c-accent);
  padding: 1.25rem 1.25rem 1.25rem 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.v2-pain-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.v2-pain-card__icon { font-size: 1.75rem; margin-bottom: 0.6rem; }
.v2-pain-card h3 {
  font-family: var(--ff-heading);
  font-size: 1.05rem; color: var(--c-primary);
  margin-bottom: 0.5rem;
}
.v2-pain-card p { font-size: 0.9rem; line-height: 1.65; }
.v2-pain__hint {
  margin-top: 2.25rem; text-align: center;
  font-size: 1rem; color: var(--c-primary);
  background: var(--c-teal-muted);
  border: 1px solid var(--c-teal-pale);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}

/* ============================================================
   ④  WARUM BISHERIGE BERATUNGEN SCHEITERN
   ============================================================ */
.v2-why {
  padding: var(--section-py) 0;
  background: var(--c-teal-muted);
}
.v2-why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.v2-why-card {
  background: var(--c-white);
  border-radius: var(--radius);
  border-top: 3px solid var(--c-secondary);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.v2-why-card h3 {
  font-family: var(--ff-heading);
  font-size: 1rem; color: var(--c-primary);
  margin-bottom: 0.6rem;
}
.v2-why-card p { font-size: 0.9rem; line-height: 1.65; }
.v2-why__conclusion {
  margin-top: 2rem; text-align: center;
  font-family: var(--ff-heading);
  font-size: 1.2rem; color: var(--c-primary);
}

/* ============================================================
   ⑤  MEIN ANSATZ (dunkle Sektion)
   ============================================================ */
.v2-approach {
  padding: var(--section-py) 0;
  background: var(--c-primary);
  color: #fff;
}
.v2-approach .v2-section-header h2 { color: #fff; }
.v2-approach .v2-section-header p { color: rgba(255,255,255,0.8); }
.v2-approach__inner {
  max-width: 760px; margin: 0 auto; text-align: center;
}
.v2-approach__text {
  font-size: 1.0625rem; color: rgba(255,255,255,0.88);
  line-height: 1.75; margin-bottom: 1.25rem;
}
.v2-approach__text strong { color: #fff; }
.v2-approach__highlight {
  font-family: var(--ff-heading);
  font-size: 1.3rem; color: var(--c-accent);
  margin: 2rem 0;
  font-style: italic;
}
.v2-approach__cta { margin-top: 2rem; }

/* ============================================================
   ⑥  3 SCHRITTE
   ============================================================ */
.v2-steps {
  padding: var(--section-py) 0;
  background: var(--c-white);
}
.v2-steps__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.v2-step { text-align: center; }
.v2-step__number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem; border-radius: 50%;
  background: var(--c-primary); color: #fff;
  font-family: var(--ff-heading); font-size: 1.4rem;
  margin: 0 auto 1rem;
}
.v2-step h3 {
  font-family: var(--ff-heading);
  font-size: 1.1rem; color: var(--c-primary);
  margin-bottom: 0.6rem;
}
.v2-step p { font-size: 0.9375rem; line-height: 1.7; }

/* ============================================================
   ⑦  ÜBER MICH
   ============================================================ */
.v2-about {
  padding: var(--section-py) 0;
  background: var(--c-teal-muted);
}
.v2-about__inner {
  display: grid; gap: 3rem; align-items: center;
}
@media (min-width: 768px) {
  .v2-about__inner { grid-template-columns: 1fr 1.5fr; }
}
.v2-about__photo {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); object-fit: cover;
  min-height: 280px;
}
.v2-about__placeholder {
  width: 100%; min-height: 280px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--c-teal-pale) 0%, var(--c-teal) 65%, var(--c-secondary) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-heading); font-size: 2.5rem; color: #fff;
}
.v2-about__text h2 {
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  color: var(--c-primary); margin-bottom: 1rem;
}
.v2-about__text p {
  line-height: 1.75; margin-bottom: 1rem;
}
.v2-about__text p em {
  color: var(--c-primary); font-style: italic;
}
.v2-about__quals {
  list-style: none; padding: 0; margin: 1.25rem 0 1.5rem;
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.v2-about__quals li {
  background: var(--c-white); color: var(--c-primary);
  border: 1px solid var(--c-teal-pale);
  border-radius: 2rem; padding: 0.3rem 0.85rem;
  font-size: 0.875rem; font-weight: 600;
}

/* ============================================================
   ⑧  TESTIMONIALS
   ============================================================ */
.v2-testimonials {
  padding: var(--section-py) 0;
  background: var(--c-white);
}
.v2-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.v2-testimonial {
  background: var(--c-off-white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--c-teal);
  display: flex; flex-direction: column; gap: 1rem;
}
.v2-testimonial__stars { color: var(--c-accent); font-size: 1rem; letter-spacing: 0.1em; }
.v2-testimonial__text {
  font-size: 0.9375rem; line-height: 1.7;
  color: var(--c-gray); flex: 1;
  font-style: italic;
}
.v2-testimonial__author {
  display: flex; align-items: center; gap: 0.75rem;
}
.v2-testimonial__avatar {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: var(--c-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-heading); font-size: 1.1rem; flex-shrink: 0;
}
.v2-testimonial__author strong { color: var(--c-primary); display: block; font-size: 0.9rem; }
.v2-testimonial__author span { font-size: 0.8125rem; color: var(--c-gray); }
.v2-testimonials__count {
  text-align: center; margin-top: 2rem;
  font-size: 1rem; color: var(--c-gray);
}
.v2-testimonials__count strong { color: var(--c-primary); }

/* ============================================================
   ⑨  FAQ
   ============================================================ */
.v2-faq {
  padding: var(--section-py) 0;
  background: var(--c-teal-muted);
}
.v2-faq__list { margin-top: 2rem; }
.v2-faq-item {
  background: var(--c-white);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.v2-faq-item__toggle {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 1.1rem 1.25rem; text-align: left;
  font-family: var(--ff-body); font-size: 1rem; font-weight: 700;
  color: var(--c-primary); transition: color 0.2s;
}
.v2-faq-item__toggle:hover { color: var(--c-secondary); }
.v2-faq-item__toggle span { flex: 1; }
.v2-faq-item__chevron {
  flex-shrink: 0; transition: transform 0.3s;
  color: var(--c-secondary);
}
.v2-faq-item.is-open .v2-faq-item__chevron { transform: rotate(180deg); }
.v2-faq-item__answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease;
}
.v2-faq-item__answer p {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.9375rem; line-height: 1.75; color: var(--c-gray);
}

/* ============================================================
   ⑩  FINAL CTA
   ============================================================ */
.v2-final-cta {
  padding: var(--section-py) 0;
  background: var(--c-primary);
  text-align: center;
}
.v2-final-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff; margin-bottom: 1rem;
}
.v2-final-cta p {
  color: rgba(255,255,255,0.85); font-size: 1.0625rem;
  max-width: 560px; margin: 0 auto 2rem; line-height: 1.7;
}
.v2-final-cta p strong { color: #fff; }
.v2-final-cta__btns {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem;
  margin-bottom: 2.5rem;
}
.v2-final-cta__form {
  max-width: 520px; margin: 0 auto;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
}
.v2-final-cta__form-intro {
  color: rgba(255,255,255,0.7); font-size: 0.9rem;
  text-align: center; margin-bottom: 1rem !important;
}
.v2-final-cta__form .wpcf7-form input:not([type="submit"]),
.v2-final-cta__form .wpcf7-form textarea,
.v2-final-cta__form .wpcf7-form select {
  background: rgba(255,255,255,0.93) !important;
  color: #333 !important; border-color: transparent !important;
  border-radius: var(--radius) !important;
}
.v2-final-cta__form .wpcf7-form input[type="submit"] {
  width: 100%;
  background: var(--c-accent) !important;
  color: var(--c-primary) !important;
  font-weight: 700 !important; border: none !important;
  border-radius: var(--radius) !important;
  font-size: 1rem !important; padding: 0.85rem 1.5rem !important;
  cursor: pointer;
}
.v2-final-cta__form .wpcf7-form input[type="submit"]:hover {
  background: #e6a72e !important;
}

/* ============================================================
   ⑪  FOOTER (minimal)
   ============================================================ */
.v2-footer {
  background: #033a5e;
  padding: 1.25rem 0;
}
.v2-footer__inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.75rem;
  font-size: 0.8125rem; color: rgba(255,255,255,0.55);
}
.v2-footer__links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.v2-footer__links a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.v2-footer__links a:hover { color: var(--c-accent); }

/* ============================================================
   ⑫  STICKY MOBILE BAR
   ============================================================ */
.v2-sticky {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  display: flex; height: 56px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.v2-sticky.is-visible { transform: translateY(0); }
.v2-sticky__btn {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 0.4rem; font-family: var(--ff-body); font-weight: 700;
  font-size: 0.9375rem; color: #fff; border: none; cursor: pointer;
  text-decoration: none; transition: filter 0.2s;
}
.v2-sticky__btn:hover { filter: brightness(0.9); color: #fff; }
.v2-sticky__btn--wa { background: var(--c-wa-green); }
.v2-sticky__btn--phone { background: var(--c-primary); }
@media (min-width: 768px) { .v2-sticky { display: none; } }
