/* LP Header */
.lp-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 20px 32px;
}
.lp-header-inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lp-logo {
  font-family: var(--font-header);
  font-size: 18px;
  font-weight: 600;
  color: var(--lp-white);
  text-decoration: none;
  letter-spacing: -0.2px;
}
.lp-logo:hover {
  color: var(--lp-accent);
}

/* ============================================================
   components.css — Alle Sektionen der Landingpage
   Basierend auf dem Onepage-Original, angepasst für Self-Hosted Fonts
   anne&thorsten. Landingpages
   ============================================================ */


/* ============================
   HERO (Split-Layout)
   ============================ */
.lp-hero {
  background: var(--lp-bg-1);
  padding: 64px 24px;
  position: relative;
  overflow: hidden;
}
.lp-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,101,45,.08) 0%, transparent 70%);
  pointer-events: none;
}
.lp-hero-inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  text-align: left;
}
.lp-hero-text {
  animation: lpUp .5s ease both;
  text-align: left;
}
.lp-eyebrow {
  display: inline-block;
  font-family: var(--font-header);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lp-accent);
  margin-bottom: 16px;
}
.lp-hero h1 {
  font-family: var(--font-header);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: var(--fw-header);
  line-height: var(--lh-header);
  letter-spacing: var(--ls-header);
  color: var(--lp-white);
  margin-bottom: 16px;
}
.lp-hero h1 em {
  font-style: normal;
  color: var(--lp-accent);
}
.lp-hero-sub {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--lp-text-main) !important;
  line-height: 1.65;
  margin-bottom: 28px;
}
.lp-hero-sub strong {
  color: var(--lp-white);
  font-weight: 600;
}
.lp-hero-note {
  font-family: var(--font-body);
  margin-top: 12px;
  font-size: 13px;
  color: var(--lp-text-dim) !important;
}
.lp-hero-img {
  position: relative;
  animation: lpUp .5s .15s ease both;
  overflow: hidden;
  border-radius: 12px;
  max-width: 100%;
}
.lp-hero-img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.lp-video-wrap{aspect-ratio:16/9;border-radius:12px;overflow:hidden;background:var(--lp-bg-2);border:1px solid var(--lp-border)}
.lp-video-wrap iframe{width:100%;height:100%;border:none}
.lp-video-placeholder{width:100%;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:12px}
.lp-video-placeholder-icon{width:56px;height:56px;border-radius:50%;background:rgba(232,101,45,.12);display:flex;align-items:center;justify-content:center}
.lp-video-placeholder-icon svg{width:24px;height:24px}
.lp-video-placeholder-text{font-family:var(--font-body);font-size:13px;color:var(--lp-text-dim)}
.lp-hero-caption { display: none; }

.lp-hero-meta{display:flex;flex-wrap:wrap;gap:8px 20px;margin:20px 0 28px}
.lp-hero-meta-item{font-family:var(--font-body);font-size:14px;color:var(--lp-text-dim);display:flex;align-items:center;gap:6px}
.lp-hero-meta-item::before{content:'';width:6px;height:6px;border-radius:50%;background:var(--lp-accent)}
.lp-hero-meta-item:first-child::before{display:none}



.lp-hero-mission {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--lp-white);
  line-height: 1.6;
  margin-bottom: 32px;
  font-weight: 500;
}
/* Hero Proof Block */
.lp-hero-proof {
  margin-bottom: 28px;
}
.lp-hero-proof-intro {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--lp-text-dim);
  margin-bottom: 16px;
}
.lp-hero-proof-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lp-hero-proof-list li {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--lp-text-main);
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 16px;
}
.lp-hero-proof-list li::before {
  content: "\2713";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--lp-accent);
  color: var(--lp-white);
  font-size: 16px;
  font-weight: 700;
}
.lp-hero-proof-list strong {
  color: var(--lp-white);
  font-weight: 600;
}


/* ============================
   STATS BAR
   ============================ */
.lp-stats {
  background: var(--lp-bg-3);
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
  padding: 32px 24px;
}
.lp-stats-inner { max-width: var(--lp-max); margin: 0 auto; }
.lp-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.lp-stat { text-align: center; padding: 0 20px; border-right: 1px solid var(--lp-border); }
.lp-stat:last-child { border-right: none; }
.lp-stat-val {
  font-family: var(--font-header);
  font-size: 28px;
  font-weight: var(--fw-header);
  color: var(--lp-accent);
  line-height: 1;
  margin-bottom: 6px;
}
.lp-stat-lbl {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--lp-text-main) !important;
  line-height: 1.4;
}


/* ============================
   TRUST BAR
   ============================ */
.lp-trust {
  background: var(--lp-bg-3);
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
  padding: 20px 24px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--lp-text-main) !important;
}
.lp-trust strong {
  color: var(--lp-white);
  font-weight: var(--fw-header);
}




/* ============================
   SCHMERZ / SYMPTOME (Webinar)
   ============================ */
.lp-pain{background:var(--lp-bg-1);padding:64px 24px;border-bottom:1px solid var(--lp-border)}
.lp-pain-inner{max-width:var(--lp-narrow);margin:0 auto}
.lp-pain-intro{font-family:var(--font-body);font-size:19px;font-style:italic;color:var(--lp-white);line-height:1.65;margin-bottom:36px;text-align:center}
.lp-symptom-list{list-style:none;display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-bottom:36px}
.lp-symptom-item{display:flex;align-items:center;gap:14px;padding:18px 20px;background:var(--lp-bg-2);border:1px solid var(--lp-border);border-radius:8px}
.lp-symptom-item-last{grid-column:1/-1;max-width:50%;justify-self:center}
.lp-symptom-icon{width:32px;height:32px;border-radius:6px;background:rgba(232,101,45,.1) url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23E8652D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='12' y1='8' x2='12' y2='12'/%3E%3Cline x1='12' y1='16' x2='12.01' y2='16'/%3E%3C/svg%3E") center/16px 16px no-repeat;flex-shrink:0;margin-top:1px}

.lp-symptom-item:nth-child(2) .lp-symptom-icon{background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23E8652D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='17 1 21 5 17 9'/%3E%3Cpath d='M3 11V9a4 4 0 0 1 4-4h14'/%3E%3Cpolyline points='7 23 3 19 7 15'/%3E%3Cpath d='M21 13v2a4 4 0 0 1-4 4H3'/%3E%3C/svg%3E")}
.lp-symptom-item:nth-child(3) .lp-symptom-icon{background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23E8652D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E")}
.lp-symptom-item:nth-child(4) .lp-symptom-icon{background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23E8652D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='12' y1='1' x2='12' y2='23'/%3E%3Cpath d='M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6'/%3E%3C/svg%3E")}
.lp-symptom-item:nth-child(5) .lp-symptom-icon{background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23E8652D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Cline x1='3' y1='9' x2='21' y2='9'/%3E%3Cline x1='9' y1='21' x2='9' y2='9'/%3E%3C/svg%3E")}


.lp-symptom-text{font-family:var(--font-body);font-size:15px;color:var(--lp-text-main);line-height:1.5}
.lp-pain-close{text-align:center;margin-top:40px}
.lp-pain-close-text{font-family:var(--font-header);font-size:20px;font-weight:var(--fw-header);color:var(--lp-white);line-height:1.5;margin-bottom:12px}
.lp-pain-close-text span{color:var(--lp-accent)}
.lp-pain-bridge{font-family:var(--font-body);font-size:16px;color:var(--lp-text-main);line-height:1.65;margin-bottom:28px;max-width:640px;margin-left:auto;margin-right:auto}


/* ============================
   WAS DU LERNST (Webinar)
   ============================ */
.lp-learn{background:var(--lp-bg-2);padding:72px 24px;border-top:1px solid var(--lp-border)}
.lp-learn-inner{max-width:var(--lp-narrow);margin:0 auto;text-align:center}
.lp-learn-grid{display:flex;flex-direction:column;gap:12px;max-width:720px;margin:0 auto}
.lp-learn-item{display:flex;align-items:flex-start;gap:16px;padding:20px 24px;background:var(--lp-bg-3);border:1px solid var(--lp-border);border-radius:8px;transition:border-color .2s;text-align:left}
.lp-learn-item:hover{border-color:var(--lp-accent)}
.lp-learn-num{width:44px;height:44px;min-width:44px;border-radius:50%;background:rgba(232,101,45,.1);border:2px solid var(--lp-accent);display:flex;align-items:center;justify-content:center;font-family:var(--font-header);font-size:15px;font-weight:700;color:var(--lp-accent);flex-shrink:0}
.lp-learn-text{font-family:var(--font-body);font-size:15px;color:var(--lp-text-main);line-height:1.6}
.lp-learn-text strong{color:var(--lp-white);font-weight:600}

/* ============================
   TESTIMONIAL (featured, mit Video)
   ============================ */
.lp-testi {
  background: var(--lp-bg-1);
  padding: 64px 24px;
  border-bottom: 1px solid var(--lp-border);
}
.lp-testi-inner { max-width: var(--lp-max); margin: 0 auto; }
.lp-tc {
  max-width: var(--lp-narrow);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.lp-tc-video {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  position: relative;
  background: var(--lp-bg-2);
}
.lp-tc-video iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.lp-tc-text {
  background: var(--lp-bg-2);
  border-left: 3px solid var(--lp-accent);
  border-radius: 0 8px 8px 0;
  padding: 28px 32px;
}
.lp-tq {
  font-family: var(--font-body);
  font-size: 17px;
  font-style: italic;
  color: var(--lp-white);
  line-height: 1.65;
  margin-bottom: 16px;
}
.lp-tr { display: flex; gap: 8px; flex-direction: column; margin-bottom: 16px; }
.lp-tri {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--lp-text-main) !important;
}
.lp-tri::before {
  content: '✓';
  color: var(--lp-accent);
  font-weight: 700;
}
.lp-ta { display: flex; align-items: center; gap: 12px; }
.lp-tav {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--lp-bg-3);
  border: 2px solid var(--lp-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-header);
  font-weight: 700;
  font-size: 14px;
  color: var(--lp-accent);
  flex-shrink: 0;
}
.lp-tav img{width:100%;height:100%;object-fit:cover;border-radius:50%}
/* Portrait-Bild */
.lp-tav-img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
/* Doppel-Portrait (z.B. Cindy & Daniel) */
.lp-tav-duo {
  display: flex;
  gap: 0;
  flex-shrink: 0;
}
.lp-tav-duo .lp-tav-img {
  width: 40px; height: 40px;
}
.lp-tav-duo .lp-tav-img:last-child {
  margin-left: -10px;
}
.lp-tan {
  font-family: var(--font-header);
  font-weight: var(--fw-header);
  font-size: 16px;
  color: var(--lp-white);
}
.lp-tar {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--lp-text-dim) !important;
}


/* ============================
   PROBLEM CARDS (flat, keine Card-Backgrounds)
   ============================ */
.lp-prob {
  background: var(--lp-bg-2);
  padding: 64px 24px;
  border-top: 1px solid var(--lp-border);
}
.lp-prob-inner { max-width: var(--lp-max); margin: 0 auto; }
.lp-prob-sub {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--lp-text-main) !important;
  line-height: 1.65;
  max-width: 640px;
  margin-bottom: 40px;
}
.lp-pg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.lp-pc {
  background: var(--lp-bg-3);
  border: 1px solid rgba(232, 101, 45, .35);
  border-radius: 8px;
  padding: 32px 24px;
  transition: border-color .2s;
}
.lp-pc:hover { border-color: var(--lp-border-h); }
.lp-pi {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: rgba(232,101,45,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.lp-pi svg { width: 24px; height: 24px; }
.lp-pc h3 {
  font-family: var(--font-header);
  font-weight: var(--fw-header);
  font-size: 17px;
  color: var(--lp-white);
  margin-bottom: 8px;
}
.lp-pc p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--lp-text-main) !important;
  line-height: 1.6;
}


/* ============================
   PHASEN (Timeline mit vertikaler Linie)
   ============================ */
.lp-ph {
  background: var(--lp-bg-1);
  padding: 72px 24px;
  border-top: 1px solid var(--lp-border);
}
.lp-ph-inner { max-width: var(--lp-max); margin: 0 auto; }
.lp-ph-intro .lp-st,
.lp-ph-bridge,
.lp-ph-method { max-width: var(--lp-narrow); }
.lp-ph-intro {
  max-width: none;
  margin-bottom: 56px;
}
.lp-ph-intro p {
  font-family: var(--font-body);
  color: var(--lp-text-main) !important;
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.65;
}
.lp-ph .lp-orange { color: var(--lp-accent); }
.lp-ph-bridge {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--lp-text-main) !important;
  line-height: 1.65;
  margin-top: 0;
  margin-bottom: 28px;
  max-width: 640px;
}
.lp-ph-transform {
  margin-bottom: 28px;
}
.lp-ph-transform-label {
  font-family: var(--font-header);
  font-weight: var(--fw-header);
  font-size: 16px;
  color: var(--lp-white);
  margin-bottom: 16px;
}
.lp-ph-transform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.lp-ph-transform-item {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--lp-text-main) !important;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--lp-bg-2);
  border: 1px solid var(--lp-border);
  border-radius: 8px;
  padding: 20px;
}
.lp-ph-check {
  color: var(--lp-accent);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.lp-ph-method {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--lp-text-main) !important;
  line-height: 1.65;
  margin-top: 0;
}

/* Timeline */
.lp-timeline {
  position: relative;
  padding-left: 80px;
}
.lp-timeline::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--lp-accent) 0%, var(--lp-accent) 60%, rgba(232,101,45,.1) 100%);
}
.lp-tl-item {
  position: relative;
  margin-bottom: 48px;
}
.lp-tl-item:last-child { margin-bottom: 0; }
.lp-tl-dot {
  position: absolute;
  left: -80px;
  top: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--lp-bg-1);
  border: 2px solid var(--lp-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-header);
  font-weight: 700;
  font-size: 18px;
  color: var(--lp-accent);
  z-index: 1;
}
.lp-tl-header { margin-bottom: 16px; }
.lp-tl-weeks {
  font-family: var(--font-header);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lp-accent);
  margin-bottom: 4px;
}
.lp-tl-title {
  font-family: var(--font-header);
  font-weight: var(--fw-header);
  font-size: 22px;
  color: var(--lp-white);
}
.lp-tl-card {
  background: var(--lp-bg-2);
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  padding: 24px 28px;
}
.lp-tl-desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--lp-text-main) !important;
  line-height: 1.65;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--lp-border);
}
.lp-tl-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 32px;
}
.lp-tl-list li {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--lp-text-main) !important;
  padding: 5px 0 5px 20px;
  position: relative;
  line-height: 1.5;
}
.lp-tl-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--lp-accent);
}


/* ============================
   PRICING
   ============================ */
.lp-pr {
  background: var(--lp-bg-2);
  padding: 72px 24px;
  border-top: 1px solid var(--lp-border);
}
.lp-pr-inner { max-width: var(--lp-max); margin: 0 auto; }
.lp-prg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.lp-prc {
  background: var(--lp-bg-1);
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  padding: 32px 28px;
  position: relative;
  transition: transform .2s;
  display: flex;
  flex-direction: column;
}
.lp-prc:hover { transform: translateY(-4px); }
.lp-prc.lp-feat {
  border-color: var(--lp-accent);
  background: var(--lp-bg-3);
}
.lp-fb {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lp-accent);
  color: var(--lp-white);
  font-family: var(--font-header);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.lp-prt {
  font-family: var(--font-header);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lp-text-dim) !important;
  margin-bottom: 16px;
}
.lp-prp {
  font-family: var(--font-header);
  font-weight: var(--fw-header);
  font-size: 36px;
  color: var(--lp-white);
  line-height: 1;
  margin-bottom: 4px;
}
.lp-prp .lp-orange { color: var(--lp-accent); }
.lp-prp .lp-old {
  font-size: 18px;
  color: var(--lp-text-dim) !important;
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 10px;
}
.lp-prper {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--lp-text-main) !important;
  margin-bottom: 24px;
}
.lp-prd {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--lp-text-main) !important;
  line-height: 1.5;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--lp-border);
}
.lp-prf {
  list-style: none;
  flex: 1;
  margin-bottom: 24px;
}
.lp-prf li {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--lp-text-main) !important;
  padding: 7px 0 7px 24px;
  position: relative;
  line-height: 1.5;
}
.lp-prf li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--lp-accent);
  font-weight: 700;
}
.lp-prw {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--lp-text-dim) !important;
  font-style: italic;
  margin-top: 16px;
  margin-bottom: 20px;
  line-height: 1.4;
}
.lp-bg {
  display: block;
  text-align: center;
  background: transparent;
  color: var(--lp-white);
  font-family: var(--font-body);
  font-weight: var(--fw-header);
  font-size: 15px;
  padding: 13px 24px;
  border-radius: var(--lp-radius);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.25);
  transition: border-color .2s, background .2s;
  margin-top: auto;
}
.lp-bg:hover {
  border-color: var(--lp-accent);
  background: rgba(232,101,45,.08);
}
.lp-bf {
  display: block;
  text-align: center;
  background: var(--lp-accent);
  color: var(--lp-white);
  font-family: var(--font-body);
  font-weight: var(--fw-header);
  font-size: 15px;
  padding: 14px 24px;
  border-radius: var(--lp-radius);
  text-decoration: none;
  transition: background .2s;
  margin-top: auto;
}
.lp-bf:hover { background: var(--lp-accent-h); }
.lp-ib {
  font-family: var(--font-body);
  margin-top: 10px;
  padding: 6px 10px;
  background: rgba(232,101,45,.12);
  border-left: 3px solid var(--lp-accent);
  border-radius: 0 4px 4px 0;
  font-size: 13px;
  color: var(--lp-accent);
  font-weight: 700;
}
.lp-roi {
  text-align: center;
  max-width: 640px;
  margin: 40px auto 0;
  padding: 20px 28px;
  background: rgba(232,101,45,.06);
  border: 1px solid var(--lp-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--lp-text-main) !important;
  line-height: 1.65;
}
.lp-roi strong {
  color: var(--lp-white);
  font-weight: var(--fw-header);
}
.lp-prn {
  text-align: center;
  margin-top: 28px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--lp-text-dim) !important;
}
.lp-prn a { color: var(--lp-accent); text-decoration: none; }
.lp-prn a:hover { text-decoration: underline; }


/* ============================
   TESTIMONIALS (Doppel, mit Video)
   ============================ */
.lp-t2 {
  background: var(--lp-bg-1);
  padding: 72px 24px;
  border-top: 1px solid var(--lp-border);
}
.lp-t2-inner { max-width: var(--lp-max); margin: 0 auto; }
.lp-t2g {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: var(--lp-narrow);
  margin: 0 auto;
}
.lp-t2c {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.lp-t2c:nth-child(even) { direction: rtl; }
.lp-t2c:nth-child(even) > * { direction: ltr; }
.lp-t2-video {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  position: relative;
  background: var(--lp-bg-2);
}
.lp-t2-video iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.lp-t2-text {
  background: var(--lp-bg-2);
  border: 1px solid var(--lp-border);
  border-radius: 8px;
  padding: 24px;
}
.lp-t2c .lp-tq {
  font-family: var(--font-body);
  font-size: 16px;
  font-style: italic;
  color: var(--lp-white);
  line-height: 1.65;
  margin-bottom: 14px;
}
.lp-t2c .lp-tr {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}
.lp-t2c .lp-tri {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--lp-text-main) !important;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp-t2c .lp-tri::before {
  content: '✓';
  color: var(--lp-accent);
  font-weight: 700;
}



/* Testimonial text-only Karten (Webinar) */
.lp-t2g-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.lp-t2-card{background:var(--lp-bg-2);border:1px solid var(--lp-border);border-radius:8px;padding:24px}
.lp-t2-card .lp-tq{font-size:16px;margin-bottom:0}


/* ============================
   ÜBER UNS
   ============================ */
.lp-about {
  background: var(--lp-bg-2);
  padding: 72px 24px;
  border-top: 1px solid var(--lp-border);
}
.lp-about-inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.lp-about-person {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}
.lp-about-img { position: relative; }
.lp-about-img img {
  width: 280px;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  display: block;
  object-fit: cover;
}
.lp-about-img-placeholder{width:280px;height:350px;border-radius:10px;background:var(--lp-bg-3);border:1px solid var(--lp-border);display:flex;align-items:center;justify-content:center;font-family:var(--font-body);font-size:13px;color:var(--lp-text-dim)}
.lp-about-name {
  font-family: var(--font-header);
  font-weight: var(--fw-header);
  font-size: 22px;
  color: var(--lp-white);
  margin-bottom: 16px;
}
.lp-about-text p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--lp-text-main) !important;
  line-height: 1.65;
  margin-bottom: 12px;
}
.lp-about-text p:last-child { margin-bottom: 0; }
.lp-about-text strong { color: var(--lp-white); font-weight: 600; }
.lp-about-stats {
  display: flex;
  gap: 32px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(232,101,45,.15);
}
.lp-about-stat-val {
  font-family: var(--font-header);
  font-weight: var(--fw-header);
  font-size: 24px;
  color: var(--lp-accent);
  line-height: 1;
}
.lp-about-stat-lbl {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--lp-text-dim) !important;
  margin-top: 4px;
}


/* ============================
   FAQ (Accordion)
   ============================ */
.lp-faq {
  background: var(--lp-bg-1);
  padding: 72px 24px;
  border-top: 1px solid var(--lp-border);
}
.lp-faq-inner { max-width: var(--lp-narrow); margin: 0 auto; }
.lp-faq-list {
  max-width: 680px;
  margin: 0 auto;
}
.lp-faq-item { border-bottom: 1px solid var(--lp-border); }
.lp-faq-q {
  font-family: var(--font-header);
  font-weight: var(--fw-header);
  font-size: 17px;
  color: var(--lp-white);
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.lp-faq-q::after {
  content: '+';
  font-size: 22px;
  color: var(--lp-accent);
  transition: transform .2s;
  flex-shrink: 0;
  margin-left: 16px;
}
.lp-faq-q.open::after { transform: rotate(45deg); }
.lp-faq-a {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--lp-text-main) !important;
  line-height: 1.65;
  padding-bottom: 20px;
  display: none;
}
.lp-faq-a.open { display: block; }


/* ============================
   FINAL CTA
   ============================ */
.lp-final {
  background: var(--lp-bg-3);
  padding: 80px 24px;
  text-align: center;
  border-top: 1px solid var(--lp-border);
}
.lp-final-inner { max-width: var(--lp-narrow); margin: 0 auto; }
.lp-final h2 {
  font-family: var(--font-header);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: var(--fw-header);
  line-height: var(--lh-header);
  letter-spacing: var(--ls-header);
  color: var(--lp-white);
  margin-bottom: 16px;
}
.lp-final h2 .lp-orange { color: var(--lp-accent); }
.lp-final p {
  font-family: var(--font-body);
  color: var(--lp-text-main) !important;
  font-size: 16px;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}
.lp-final .lp-btn { font-size: 17px; padding: 18px 48px; }
.lp-final-sub {
  font-family: var(--font-body);
  margin-top: 20px;
  font-size: 14px;
  color: var(--lp-text-dim) !important;
}
.lp-final-sub a { color: var(--lp-accent); text-decoration: none; }


/* ============================
   NAVIGATION
   ============================ */
.lp-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 26, 46, .88);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--lp-border-w);
  padding: 0 24px;
}
.lp-nav-inner {
  max-width: var(--lp-max); margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  height: 64px; position: relative;
}
.lp-nav-logo {
  font-family: var(--font-header); font-size: 20px; font-weight: 800;
  color: var(--lp-white); white-space: nowrap;
  text-decoration: none; position: absolute; left: 0;
}
.lp-nav-links { display: flex; gap: 28px; align-items: center; justify-content: center; }
.lp-nav-links a {
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,.85); text-decoration: none; transition: color .2s;
}
.lp-nav-links a:hover { color: var(--lp-white); }
.lp-nav-cta {
  display: inline-block; background: var(--lp-accent); color: var(--lp-white);
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  padding: 10px 22px; border-radius: 6px;
  text-decoration: none; transition: background .2s;
  white-space: nowrap; position: absolute; right: 0;
}
.lp-nav-cta:hover { background: var(--lp-accent-h); }


/* ============================
   THORSTEN QUOTE (2-spaltig)
   ============================ */
.lp-quote {
  background: var(--lp-bg-1);
  padding: 80px 24px;
  position: relative; overflow: hidden;
}
.lp-quote::before {
  content: '';
  position: absolute; top: 0; left: 20%;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(232,101,45,.04) 0%, transparent 50%);
  pointer-events: none;
}
.lp-quote-inner {
  max-width: var(--lp-narrow); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 320px;
  gap: 48px; align-items: center;
  position: relative;
}
.lp-quote-content { position: relative; }
.lp-quote-mark {
  position: absolute; top: -80px; left: -12px;
  font-family: var(--font-header); font-size: 140px;
  font-weight: 800; color: var(--lp-accent);
  opacity: .2; line-height: 1;
  pointer-events: none; z-index: 0;
}
.lp-quote-text, .lp-quote-author { position: relative; z-index: 1; }
.lp-quote-text {
  font-family: var(--font-body);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 500; font-style: italic;
  color: rgba(255,255,255,.72);
  line-height: 1.65; margin-bottom: 24px;
}
.lp-quote-text strong { color: var(--lp-white); font-weight: 700; font-style: italic; }
.lp-quote-author { display: flex; align-items: center; gap: 12px; }
.lp-quote-author-name {
  font-family: var(--font-header); font-size: 14px;
  font-weight: 600; color: var(--lp-white);
}
.lp-quote-author-role {
  font-family: var(--font-body); font-size: 13px;
  color: rgba(255,255,255,.51);
}
.lp-quote-photo img {
  width: 100%; height: 400px; object-fit: cover;
  object-position: 50% 38%;
  border-radius: 16px;
}


/* ============================
   TWIST / WENDEPUNKT
   ============================ */
.lp-twist {
  background: var(--lp-bg-1);
  padding: 80px 24px;
  position: relative; overflow: hidden;
}
.lp-twist::after {
  content: '';
  position: absolute; top: 20%; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,101,45,.06) 0%, transparent 60%);
  pointer-events: none;
}
.lp-twist-inner {
  max-width: var(--lp-narrow); margin: 0 auto;
  position: relative; z-index: 1;
}
.lp-twist h2 {
  font-family: var(--font-header);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: var(--fw-header); line-height: var(--lh-header);
  color: var(--lp-white); margin-bottom: 20px;
}
.lp-twist p {
  font-family: var(--font-body); font-size: 17px;
  color: var(--lp-text-main); line-height: 1.65; margin-bottom: 16px;
}
.lp-twist p strong { color: var(--lp-white); font-weight: 600; }
.lp-twist blockquote {
  border-left: 4px solid var(--lp-accent);
  padding: 20px 28px; margin: 28px 0;
  background: rgba(232,101,45,.04); border-radius: 0 8px 8px 0;
}
.lp-twist blockquote p {
  font-size: 18px; font-weight: 600; font-style: italic;
  color: var(--lp-white); margin-bottom: 0;
}
.lp-twist blockquote cite {
  font-family: var(--font-body); font-size: 14px;
  font-style: normal; color: var(--lp-text-dim);
  display: block; margin-top: 8px;
}
.lp-twist-close {
  font-family: var(--font-header); font-size: 20px;
  font-weight: 700; color: var(--lp-white);
  margin: 28px 0 32px;
}


/* ============================
   REFERENZEN (alternierend)
   ============================ */
.lp-ref-intro {
  background: var(--lp-bg-2);
  padding: 80px 24px 0;
  overflow: hidden;
}
.lp-ref-intro-inner { max-width: var(--lp-max); margin: 0 auto; }
.lp-ref-framing {
  font-family: var(--font-body); font-size: 15px;
  color: var(--lp-text-main); line-height: 1.65;
  font-style: italic; padding-left: 20px;
  border-left: 3px solid var(--lp-accent);
  max-width: 680px;
}

.lp-ref {
  background: var(--lp-bg-2);
  padding: 48px 24px;
}
.lp-ref + .lp-ref { border-top: 1px solid var(--lp-border-w); }
.lp-ref-inner { max-width: var(--lp-max); margin: 0 auto; }
.lp-ref-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: start;
}

.lp-ref-player {
  border-radius: 10px; overflow: hidden;
  aspect-ratio: 16 / 9; position: relative;
  background: var(--lp-bg-3); margin-bottom: 20px;
}
.lp-ref-player iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: none;
}
.lp-ref-person { display: flex; align-items: center; gap: 12px; }
.lp-ref-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  border: 2px solid var(--lp-border-w);
  object-fit: cover; flex-shrink: 0;
}
.lp-ref-avatar-duo { display: flex; gap: 0; }
.lp-ref-avatar-duo img {
  width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid var(--lp-border-w);
  object-fit: cover;
}
.lp-ref-avatar-duo img + img { margin-left: -8px; }
.lp-ref-name {
  font-family: var(--font-header); font-weight: 600;
  font-size: 15px; color: var(--lp-white);
}
.lp-ref-role {
  font-family: var(--font-body); font-size: 13px;
  color: var(--lp-text-dim); line-height: 1.3;
}

.lp-ref-text h3 {
  font-family: var(--font-header); font-size: 20px;
  font-weight: 700; color: var(--lp-white);
  line-height: 1.35; margin-bottom: 16px;
}
.lp-ref-story {
  font-family: var(--font-body); font-size: 15px;
  color: var(--lp-text-main); line-height: 1.65;
  margin-bottom: 20px;
}
.lp-ref-label {
  font-family: var(--font-header); font-size: 13px;
  font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--lp-accent);
  margin-bottom: 12px;
}
.lp-ref-results {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 20px;
}
.lp-ref-result {
  position: relative;
  padding-left: 24px;
  font-family: var(--font-body); font-size: 15px; color: var(--lp-text-main);
  line-height: 1.5;
}
.lp-ref-result::before {
  content: '\2713'; color: var(--lp-accent); font-weight: 700;
  position: absolute; left: 0;
}
.lp-ref-result strong { color: var(--lp-white); font-weight: 600; }
.lp-ref-final {
  font-family: var(--font-body); font-size: 15px;
  font-weight: 600; font-style: italic;
  color: var(--lp-white); line-height: 1.6;
  border-left: 3px solid var(--lp-accent);
  padding-left: 16px;
}


/* ============================
   ÜBER UNS — Homepage-Variante (2 Karten)
   ============================ */
.lp-about-inner:has(.lp-about-header) {
  display: block;
}
.lp-about-header {
  text-align: center; margin-bottom: 48px;
}
.lp-about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.lp-about-card {
  background: var(--lp-bg-3);
  border-radius: 16px; padding: 32px;
  border: 1px solid var(--lp-border-w);
}
.lp-about-card-img {
  width: 100%; aspect-ratio: 1 / 1; overflow: hidden;
  border-radius: 12px; margin-bottom: 24px;
  background: var(--lp-bg-4);
}
.lp-about-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.lp-about-card h3 {
  font-family: var(--font-header); font-size: 22px;
  font-weight: 700; color: var(--lp-white); margin-bottom: 16px;
}
.lp-about-card p {
  font-family: var(--font-body); font-size: 15px;
  color: var(--lp-text-main); line-height: 1.65; margin-bottom: 16px;
}
.lp-about-card-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 14px;
  color: var(--lp-accent); font-weight: 500;
  text-decoration: none; transition: color .2s;
}
.lp-about-card-link:hover { color: var(--lp-accent-h); }
.lp-about-card-link svg { width: 18px !important; height: 18px !important; max-width: 18px; flex-shrink: 0; display: inline-block; vertical-align: middle; }


/* ============================
   FOOTER (zentriert, schlicht)
   ============================ */
.lp-footer {
  background: var(--lp-bg-1);
  border-top: 1px solid var(--lp-border);
  padding: 32px 24px 24px;
}
.lp-footer-inner { max-width: var(--lp-max); margin: 0 auto; }
.lp-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lp-footer-brand {
  font-family: var(--font-header);
  font-size: 18px;
  color: var(--lp-white);
}
.lp-footer-brand strong { font-weight: 700; }
.lp-footer-links {
  display: flex;
  gap: 28px;
}
.lp-footer-links a {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--lp-text-dim);
  text-decoration: none;
  transition: color .2s;
}
.lp-footer-links a:hover { color: var(--lp-white); }
.lp-footer-divider {
  height: 1px;
  background: var(--lp-border);
  margin: 20px 0;
}
.lp-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--lp-text-dim);
}
.lp-footer-legal {
  font-family: var(--font-body);
  font-size: 12px;
}
.lp-footer-legal a {
  color: var(--lp-text-dim);
  text-decoration: underline;
  transition: color .2s;
}
.lp-footer-legal a:hover { color: var(--lp-white); }

/* Ausblenden auf Homepage */
body[data-page="startseite"] .lp-roi { display: none; }

/* Legal: Footer-Abstand */
.lp-legal + .lp-footer { margin-top: 40px; }


/* Legal-Seiten (Impressum, Datenschutz) */
.lp-legal {
  padding: 120px 24px 80px;
}
.lp-legal-inner {
  max-width: var(--lp-narrow);
  margin: 0 auto;
}
.lp-legal h1 {
  font-family: var(--font-header);
  font-size: 32px;
  font-weight: 700;
  color: var(--lp-white);
  margin-bottom: 40px;
}
.lp-legal h2 {
  font-family: var(--font-header);
  font-size: 22px;
  font-weight: 700;
  color: var(--lp-white);
  margin-top: 48px;
  margin-bottom: 16px;
}
.lp-legal h3 {
  font-family: var(--font-header);
  font-size: 17px;
  font-weight: 700;
  color: var(--lp-white);
  margin-top: 32px;
  margin-bottom: 12px;
}
.lp-legal p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--lp-text-dim);
  margin-bottom: 16px;
}
.lp-legal ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.lp-legal li {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--lp-text-dim);
  margin-bottom: 8px;
}
.lp-legal a {
  color: var(--lp-accent);
  text-decoration: underline;
  transition: color .2s;
}
.lp-legal a:hover {
  color: var(--lp-accent-hover);
}

/* --- Cookie-Einstellungen Button im Footer --- */
.lp-footer-links button {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--lp-text-dim);
  cursor: pointer;
  padding: 0;
  transition: color .2s;
}
.lp-footer-links button:hover { color: var(--lp-white); }

/* --- CookieConsent v3 Brand-Farben --- */
#cc-main {
  --cc-font-family: var(--font-body, 'Raleway', sans-serif);
  --cc-bg: var(--lp-bg-3, #132540);
  --cc-primary-color: var(--lp-white, #fff);
  --cc-secondary-color: var(--lp-text-main, #BDBFC4);
  --cc-btn-primary-bg: var(--lp-accent, #E8652D);
  --cc-btn-primary-color: var(--lp-white, #fff);
  --cc-btn-primary-hover-bg: var(--lp-accent-h, #F07A47);
  --cc-btn-primary-hover-color: var(--lp-white, #fff);
  --cc-btn-secondary-bg: var(--lp-bg-2, #0F2138);
  --cc-btn-secondary-color: var(--lp-text-main, #BDBFC4);
  --cc-btn-secondary-hover-bg: var(--lp-bg-1, #0B1A2E);
  --cc-btn-secondary-hover-color: var(--lp-white, #fff);
  --cc-separator-border-color: var(--lp-border, rgba(232,101,45,.2));
  --cc-cookie-category-block-bg: var(--lp-bg-2, #0F2138);
  --cc-cookie-category-block-hover-bg: var(--lp-bg-1, #0B1A2E);
  --cc-overlay-bg: rgba(11, 26, 46, .65);
  --cc-toggle-on-bg: var(--lp-accent, #E8652D);
  --cc-toggle-off-bg: var(--lp-bg-2, #0F2138);
  --cc-toggle-readonly-bg: var(--lp-text-dim, #8A8F99);
  --cc-section-border: var(--lp-border, rgba(232,101,45,.2));
}

/* Header CTA Button */
.lp-header-cta{font-family:var(--font-header);font-size:14px;font-weight:600;color:var(--lp-white);background:var(--lp-accent);padding:10px 24px;border-radius:var(--lp-radius);text-decoration:none;transition:background .2s,transform .2s;white-space:nowrap}
.lp-header-cta:hover{background:var(--lp-accent-h);transform:translateY(-1px)}

/* ============================
   MODAL – Konfigurierbares Formular
   ============================ */
.lp-modal-overlay{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.6);backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);z-index:100;display:flex;align-items:center;justify-content:center;padding:24px;opacity:0;visibility:hidden;transition:opacity .25s,visibility .25s}
.lp-modal-overlay.open{opacity:1;visibility:visible}
.lp-modal{background:var(--lp-bg-2);border:1px solid var(--lp-border);border-radius:10px;max-width:480px;width:100%;padding:40px;position:relative;transform:translateY(12px);transition:transform .25s}
.lp-modal-overlay.open .lp-modal{transform:translateY(0)}
.lp-modal-close{position:absolute;top:16px;right:16px;width:32px;height:32px;background:none;border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;border-radius:4px;transition:background .2s}
.lp-modal-close:hover{background:rgba(255,255,255,.08)}
.lp-modal-close svg{width:18px;height:18px;stroke:var(--lp-text-dim);stroke-width:2}
.lp-modal h2{font-family:var(--font-header);font-size:22px;font-weight:var(--fw-header);color:var(--lp-white);line-height:var(--lh-header);margin:0 0 8px}
.lp-modal .lp-modal-subtitle{font-family:var(--font-body);font-size:15px;color:var(--lp-text-main);line-height:1.55;margin:0 0 28px}
.lp-form-group{display:flex;flex-direction:column;gap:6px;margin-bottom:16px}
.lp-form-label{font-family:var(--font-header);font-size:13px;font-weight:600;color:var(--lp-white);letter-spacing:.2px}
.lp-form-input{font-family:var(--font-body);font-size:15px;color:var(--lp-white);background:var(--lp-bg-3);border:1px solid var(--lp-border);border-radius:var(--lp-radius);padding:12px 16px;outline:none;transition:border-color .2s}
.lp-form-input::placeholder{color:var(--lp-text-dim)}
.lp-form-input:focus{border-color:var(--lp-accent)}
.lp-form-input.error{border-color:#e85454}
.lp-form-error{font-family:var(--font-body);font-size:12px;color:#e85454;min-height:0}
.lp-form-submit{font-family:var(--font-header);font-size:16px;font-weight:600;color:var(--lp-white);background:var(--lp-accent);border:none;border-radius:var(--lp-radius);padding:14px 24px;cursor:pointer;width:100%;margin-top:8px;transition:background .2s,transform .2s}
.lp-form-submit:hover{background:var(--lp-accent-h);transform:translateY(-1px)}
.lp-form-submit:disabled{opacity:.6;cursor:not-allowed;transform:none}
.lp-modal-success{text-align:center;padding:20px 0}
.lp-modal-success-icon{width:56px;height:56px;border-radius:50%;background:rgba(232,101,45,.15);border:2px solid var(--lp-accent);display:flex;align-items:center;justify-content:center;margin:0 auto 20px}
.lp-modal-success-icon svg{width:24px;height:24px;stroke:var(--lp-accent);stroke-width:2.5}
.lp-modal-success h3{font-family:var(--font-header);font-size:20px;font-weight:var(--fw-header);color:var(--lp-white);margin:0 0 10px}
.lp-modal-success p{font-family:var(--font-body);font-size:15px;color:var(--lp-text-main);line-height:1.55;margin:0}
.lp-form-global-error{font-family:var(--font-body);font-size:13px;color:#e85454;text-align:center;margin-top:12px}




/* === Diagnose Section (dramatic escalation) === */
.lp-diagnose {
  background: var(--lp-bg-1);
  padding: 80px 24px;
}
.lp-diagnose-inner {
  max-width: var(--lp-max);
  margin: 0 auto;
}
.lp-diagnose-intro {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--lp-text-main);
  line-height: 1.65;
  max-width: 720px;
  margin-bottom: 56px;
}
.lp-diagnose-scale {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lp-diagnose-step {
  border-radius: var(--lp-radius);
  padding: 32px;
  border-left: 4px solid var(--lp-border);
  transition: transform .2s;
}
.lp-diagnose-step:hover { transform: translateY(-4px); }
.lp-diagnose-step--yellow {
  background: rgba(234,179,8,.06);
  border-left-color: #eab308;
}
.lp-diagnose-step--orange {
  background: rgba(232,101,45,.08);
  border-left-color: var(--lp-accent);
}
.lp-diagnose-step--red {
  background: rgba(224,64,64,.10);
  border-left-color: #e04040;
  box-shadow: 0 0 24px rgba(224,64,64,.12);
}
.lp-diagnose-icon {
  margin-bottom: 12px;
  line-height: 1;
}
.lp-diagnose-icon svg {
  width: 40px;
  height: 40px;
  stroke: currentColor;
  fill: none;
}
.lp-diagnose-step--yellow .lp-diagnose-icon { color: #eab308; }
.lp-diagnose-step--orange .lp-diagnose-icon { color: var(--lp-accent); }
.lp-diagnose-step--red .lp-diagnose-icon { color: #e04040; }
.lp-diagnose-num {
  font-family: var(--font-header);
  font-size: 56px;
  font-weight: var(--fw-header);
  color: var(--lp-white);
  line-height: 1;
  margin-bottom: 4px;
}
.lp-diagnose-step--red .lp-diagnose-num {
  color: #f87171;
}
.lp-diagnose-label {
  font-family: var(--font-header);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lp-text-dim);
  margin-bottom: 16px;
}
.lp-diagnose-step p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--lp-text-main);
  line-height: 1.6;
}


.lp-transform-row {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  padding: 20px 32px;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.08);
}
.lp-transform-row:first-of-type {
  border-top: none;
}
.lp-transform-col-left {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--lp-text-dim);
  line-height: 1.55;
}
.lp-transform-col-mid {
  text-align: center;
  color: var(--lp-accent);
  font-size: 20px;
  font-weight: 700;
}
.lp-transform-col-right {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--lp-white);
  line-height: 1.55;
  font-weight: 500;
}
/* === Before/After Transform Section === */
.lp-ba {
  padding: 64px 24px;
  background: var(--lp-bg-1);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.lp-ba-inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  text-align: center;
}
.lp-ba .lp-sl {
  color: var(--lp-accent);
}
.lp-ba-title {
  font-family: var(--font-header);
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: var(--fw-header);
  line-height: var(--lh-header);
  letter-spacing: var(--ls-header);
  color: var(--lp-white);
  margin-bottom: 48px;
}
.lp-ba-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: stretch;
  text-align: left;
}
.lp-ba-col {
  padding: 32px;
  border-radius: var(--lp-radius);
}
.lp-ba-before {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
}
.lp-ba-after {
  background: rgba(232,101,45,.06);
  border: 1px solid rgba(232,101,45,.2);
}
.lp-ba-label {
  font-family: var(--font-header);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.lp-ba-before .lp-ba-label {
  color: var(--lp-text-dim);
}
.lp-ba-after .lp-ba-label {
  color: var(--lp-accent);
}
.lp-ba-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--lp-text-main);
}
.lp-ba-item + .lp-ba-item {
  border-top: 1px solid rgba(255,255,255,.08);
}
.lp-ba-icon {
  flex-shrink: 0;
  font-size: 16px;
  margin-top: 2px;
}
.lp-ba-before .lp-ba-icon {
  color: var(--lp-text-dim);
}
.lp-ba-after .lp-ba-icon {
  color: var(--lp-accent);
}
.lp-ba-after .lp-ba-item {
  color: var(--lp-white);
  font-weight: 500;
}
.lp-ba-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-ba-arrow-icon {
  width: 56px;
  height: 56px;
  background: var(--lp-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(232,101,45,.3);
}
.lp-ba-arrow-icon svg {
  width: 24px;
  height: 24px;
}

/* === Process Section === */
.lp-process {
  padding: 80px 24px;
  background: var(--lp-bg-2);
}
.lp-process-inner {
  max-width: var(--lp-max);
  margin: 0 auto;
}
.lp-process-header {
  text-align: center;
  margin-bottom: 64px;
}
.lp-process-sub {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--lp-text-main);
  margin-top: 12px;
}
.lp-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.lp-process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: linear-gradient(90deg, var(--lp-accent), rgba(255,255,255,.08), var(--lp-accent));
  opacity: .3;
}
.lp-process-step {
  text-align: center;
  position: relative;
}
.lp-process-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--lp-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-header);
  font-size: 28px;
  font-weight: 800;
  color: var(--lp-white);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 24px rgba(232,101,45,.3);
}
.lp-process-title {
  font-family: var(--font-header);
  font-size: 20px;
  font-weight: 700;
  color: var(--lp-white);
  margin-bottom: 6px;
}
.lp-process-time {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--lp-accent);
  font-weight: 600;
  margin-bottom: 14px;
}
.lp-process-text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--lp-text-main);
  max-width: 320px;
  margin: 0 auto;
}
.lp-process-cta {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}


/* ============================
   PROBLEMS GRID 5-CARD LAYOUT
   ============================ */
.lp-pg-5 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.lp-pg-5 .lp-pc { grid-column: span 2; }
.lp-pg-5 .lp-pc:nth-child(4) { grid-column: 2 / 4; }
.lp-pg-5 .lp-pc:nth-child(5) { grid-column: 4 / 6; }

/* ============================
   3-EBENEN LÖSUNG
   ============================ */
.lp-solution {
  background: var(--lp-bg-1);
  padding: 80px 24px;
  border-top: 1px solid var(--lp-border);
}
.lp-solution-inner { max-width: var(--lp-max); margin: 0 auto; }
.lp-solution-sub {
  font-family: var(--font-body);
  font-size: 17px; color: var(--lp-text-main);
  line-height: 1.65; max-width: 700px;
  margin-bottom: 48px;
}
.lp-solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lp-solution-card {
  background: var(--lp-bg-2);
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.lp-solution-card:hover {
  border-color: var(--lp-border-h);
  transform: translateY(-2px);
}
.lp-solution-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--lp-accent), transparent);
}
.lp-solution-label {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--lp-accent); margin-bottom: 12px;
}
.lp-solution-card h3 {
  font-family: var(--font-header);
  font-size: 22px; font-weight: var(--fw-header);
  color: var(--lp-white); margin-bottom: 6px;
}
.lp-solution-subtitle {
  font-family: var(--font-body);
  font-size: 15px; color: var(--lp-text-main);
  margin-bottom: 16px;
}
.lp-solution-card > p {
  font-family: var(--font-body);
  font-size: 15px; line-height: 1.65;
  color: var(--lp-text-main); margin-bottom: 20px;
}
.lp-solution-bullets {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 24px;
}
.lp-solution-bullets li {
  font-family: var(--font-body);
  font-size: 14px; line-height: 1.6;
  color: var(--lp-text-main);
  padding-left: 18px; position: relative;
}
.lp-solution-bullets li::before {
  content: ''; position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  background: var(--lp-accent); border-radius: 50%;
}
.lp-solution-bullets li strong { color: var(--lp-white); font-weight: 600; }
.lp-solution-result {
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-family: var(--font-body);
  font-size: 14px; font-weight: 600;
  color: var(--lp-accent); line-height: 1.55;
}

/* ============================
   FINAL CTA BADGE
   ============================ */
.lp-final-badge {
  display: inline-block;
  background: rgba(232, 101, 45, .12);
  border: 1px solid rgba(232, 101, 45, .3);
  border-radius: 8px;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: 15px; font-weight: 600;
  color: var(--lp-accent);
  margin-bottom: 28px;
  line-height: 1.5;
}

/* Fix: lp-final has 2 paragraphs, remove max-width constraint on second */
.lp-final p + p { max-width: 580px; }

/* ============================
   RESPONSIVE: Solution + Problems 5-card
   ============================ */
@media (max-width: 900px) {
  .lp-solution-grid { grid-template-columns: 1fr; }
  .lp-pg-5 { grid-template-columns: 1fr; }
  .lp-pg-5 .lp-pc,
  .lp-pg-5 .lp-pc:nth-child(4),
  .lp-pg-5 .lp-pc:nth-child(5) { grid-column: auto; }
  .lp-nav-links a:not(.lp-nav-cta) { display: none; }
}

/* ============================
   WEBINAR: Meta-Info (Dauer, Plätze)
   ============================ */
.lp-webinar-meta {
  display: flex; gap: 24px; margin: 20px 0;
  font-size: 14px; color: var(--lp-text-dim);
}
.lp-webinar-meta-item {
  display: flex; align-items: center; gap: 6px;
}
.lp-webinar-meta-item svg { opacity: .7; flex-shrink: 0; }

.lp-webinar-counter {
  font-size: 13px; color: var(--lp-text-dim);
  margin-top: 12px;
}

/* ============================
   WEBINAR: Benefits
   ============================ */
.lp-benefits { padding: 80px 0; }
.lp-benefits-inner { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.lp-benefits-list {
  list-style: none; padding: 0; margin: 40px 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.lp-benefits-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: var(--font-body); font-size: 16px;
  color: var(--lp-text-main); line-height: 1.6;
}
.lp-benefit-icon {
  color: var(--lp-accent); font-weight: 700;
  flex-shrink: 0; margin-top: 2px;
}
.lp-benefits-cta { text-align: center; margin-top: 32px; }

@media (max-width: 600px) {
  .lp-benefits-list { grid-template-columns: 1fr; }
}


/* ============================
   WEBINAR: Schedule Slots
   ============================ */
.lp-schedule-list {
  display: flex; flex-direction: column; gap: 10px;
}
.lp-schedule-slot {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--lp-bg-3, #132540);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  padding: 16px 20px;
  cursor: pointer; transition: all .2s;
  font-family: var(--font-body);
  color: var(--lp-white);
  text-align: left; width: 100%;
}
.lp-schedule-slot:hover {
  border-color: var(--lp-accent);
  background: rgba(232, 101, 45, .08);
}
.lp-schedule-slot-date {
  font-weight: 600; font-size: 15px;
}
.lp-schedule-slot-seats {
  font-size: 13px; color: var(--lp-accent);
}

/* ============================
   WEBINAR: Form Elements
   ============================ */
.lp-input {
  display: block; width: 100%;
  background: var(--lp-bg-3, #132540);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--lp-white);
  margin-bottom: 12px;
  transition: border-color .2s;
  box-sizing: border-box;
}
.lp-input:focus {
  outline: none;
  border-color: var(--lp-accent);
}
.lp-input::placeholder { color: var(--lp-text-dim); }

.lp-btn-full { width: 100%; text-align: center; margin-top: 8px; }

.lp-modal-chosen-slot {
  background: rgba(232, 101, 45, .1);
  border: 1px solid rgba(232, 101, 45, .25);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px; font-weight: 600;
  color: var(--lp-accent);
  margin-bottom: 20px;
}

.lp-modal-privacy {
  font-size: 12px; color: var(--lp-text-dim);
  text-align: center; margin: 12px 0 0;
}

.lp-modal-error {
  background: rgba(220, 38, 38, .1);
  border: 1px solid rgba(220, 38, 38, .3);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px; color: #fca5a5;
  margin-top: 12px;
}




@media (max-width: 600px) {
  .lp-webinar-meta { flex-direction: column; gap: 8px; }
}
