/* ============================================================
   lp.css — Landingpage / Beratung Variants
   Drei Varianten teilen Form-Stile, Progress, Trust-Streifen.
   Variants differ in hero layout + farbliche Tonalität.
   ============================================================ */

/* ----- LP-only header (logo + phone + whatsapp) ----- */
.lp-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--sa-cream);
  border-bottom: 1px solid var(--sa-hair);
}
.lp-header__bar {
  max-width: 1280px; margin: 0 auto;
  padding: 16px 48px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.lp-header__cta {
  display: flex; align-items: center; gap: 10px;
}
.lp-phone {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: transparent;
  color: var(--sa-ink);
  text-decoration: none;
  font-family: var(--sa-font-display);
  font-size: 14px; font-weight: 600;
  border: 1px solid var(--sa-hair);
  transition: background .15s, border-color .15s;
}
.lp-phone:hover { border-color: var(--sa-ink); background: var(--sa-paper); }
.lp-phone__num { white-space: nowrap; }
.lp-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px 10px 12px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-family: var(--sa-font-display);
  font-size: 13px; font-weight: 600;
  border: 1px solid #25D366;
  transition: background .15s;
  white-space: nowrap;
}
.lp-whatsapp:hover { background: #1ebd5b; }
@media (max-width: 720px) {
  .lp-header__bar { padding: 12px 16px; }
  .lp-phone__num { display: none; }
  .lp-phone, .lp-whatsapp { padding: 10px 12px; }
}

/* ----- LP hero base (form right, value left) ----- */
.lp-hero {
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}
.lp-hero__grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 56px;
  align-items: start;
}
.lp-hero__lead {
  position: sticky; top: 100px;
}
.lp-hero h1 {
  font-family: var(--sa-font-display);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 18px 0 0;
  text-wrap: balance;
  color: var(--sa-ink);
}
.lp-hero h1 .grad {
  background: linear-gradient(120deg, var(--sa-purple), var(--sa-purple-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lp-hero__sub {
  font-family: var(--sa-font-body);
  font-size: 17px; line-height: 1.55;
  color: var(--sa-ink-soft);
  margin: 18px 0 0;
  max-width: 520px;
  text-wrap: pretty;
}

/* Trust strip (small bullets right under headline) */
.lp-trust-bullets {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: flex; flex-direction: column; gap: 10px;
  max-width: 520px;
}
.lp-trust-bullets li {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--sa-font-body);
  font-size: 15px; line-height: 1.4;
  color: var(--sa-ink);
}
.lp-trust-bullets li::before {
  content: '';
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--sa-purple-soft);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10' fill='none'><path d='M2 5l2 2 4-4' stroke='%236B2DC9' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat; background-position: center;
}

/* Star rating row */
.lp-rating {
  display: flex; align-items: center; gap: 14px;
  margin-top: 24px;
}
.lp-rating__stars {
  color: var(--sa-gold);
  font-size: 18px;
  letter-spacing: 2px;
}
.lp-rating__text {
  font-family: var(--sa-font-body);
  font-size: 13.5px;
  color: var(--sa-ink-soft);
}
.lp-rating__text strong { color: var(--sa-ink); }
.lp-rating__google {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--sa-font-mono);
  font-size: 10.5px; letter-spacing: 0.1em;
  color: var(--sa-ink-mute);
  text-transform: uppercase;
  margin-left: 4px;
  padding-left: 14px;
  border-left: 1px solid var(--sa-hair);
}

/* ============================================================
   MULTI-STEP FORM
   ============================================================ */
.lp-form-card {
  background: #fff;
  border-radius: var(--sa-radius-xl);
  border: 1px solid var(--sa-hair);
  box-shadow: 0 30px 60px -30px rgba(21,18,28,0.18);
  padding: 0;
  overflow: hidden;
  position: relative;
}
.lp-form-card__head {
  padding: 24px 28px 16px;
  border-bottom: 1px solid var(--sa-hair);
  display: flex; flex-direction: column; gap: 12px;
}
.lp-form-card__head__top {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
}
.lp-form-card__head h2 {
  font-family: var(--sa-font-display);
  font-size: 18px; font-weight: 600;
  letter-spacing: -0.01em; margin: 0;
  color: var(--sa-ink);
}
.lp-form-card__head__step {
  font-family: var(--sa-font-mono);
  font-size: 10.5px; letter-spacing: 0.1em;
  color: var(--sa-ink-mute);
  text-transform: uppercase;
  white-space: nowrap;
}
.lp-form-card__head__step strong { color: var(--sa-purple); }

/* Progress bar */
.lp-progress {
  width: 100%;
  height: 4px;
  background: var(--sa-hair);
  border-radius: 999px;
  overflow: hidden;
}
.lp-progress__fill {
  height: 100%;
  background: var(--sa-purple);
  border-radius: 999px;
  width: 20%;
  transition: width .35s cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-form-card__body { padding: 24px 28px 28px; }

/* Step container */
.lp-step { display: none; }
.lp-step.is-active { display: block; }
.lp-step__title {
  font-family: var(--sa-font-display);
  font-size: 20px; font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--sa-ink);
  margin: 0 0 32px;
  line-height: 1.25;
}
.lp-step__desc {
  font-family: var(--sa-font-body);
  font-size: 14px; line-height: 1.45;
  color: var(--sa-ink-soft);
  margin: 0 0 18px;
}

/* Big visual radio buttons */
.lp-radios {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.lp-radios--single { grid-template-columns: 1fr; }
.lp-radio {
  position: relative;
  display: flex; flex-direction: column;
  gap: 8px;
  padding: 14px 14px 14px 14px;
  border-radius: var(--sa-radius-sm);
  border: 1.5px solid var(--sa-hair);
  background: var(--sa-cream);
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.lp-radio input {
  position: absolute; opacity: 0; pointer-events: none;
}
.lp-radio:hover { border-color: var(--sa-purple-edge); }
.lp-radio:has(input:checked) {
  border-color: var(--sa-purple);
  background: var(--sa-purple-soft);
}
.lp-radio__icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: #fff;
  display: grid; place-items: center;
  color: var(--sa-purple);
}
.lp-radio:has(input:checked) .lp-radio__icon { background: #fff; }
.lp-radio__label {
  font-family: var(--sa-font-display);
  font-size: 14px; font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--sa-ink);
  line-height: 1.25;
}
.lp-radio__sub {
  font-family: var(--sa-font-body);
  font-size: 12px;
  color: var(--sa-ink-soft);
  margin-top: 2px;
}

/* Inputs */
.lp-input-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.lp-input-group label {
  font-family: var(--sa-font-display);
  font-size: 13px; font-weight: 500;
  color: var(--sa-ink-soft);
}
.lp-input-group input {
  width: 100%;
  padding: 14px 16px;
  background: var(--sa-cream);
  border: 1px solid var(--sa-hair);
  border-radius: var(--sa-radius-sm);
  font-family: var(--sa-font-body);
  font-size: 16px;
  color: var(--sa-ink);
  outline: none;
}
.lp-input-group input:focus {
  border-color: var(--sa-purple);
  box-shadow: 0 0 0 3px rgba(107,45,201,0.1);
}
.lp-form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
@media (max-width: 480px) {
  .lp-form-row { grid-template-columns: 1fr; }
}

/* Pill group for gender */
.lp-pill-radio {
  display: flex; gap: 6px;
}
.lp-pill-radio label {
  flex: 1;
  padding: 10px 12px;
  background: var(--sa-cream);
  border: 1px solid var(--sa-hair);
  border-radius: 999px;
  font-family: var(--sa-font-display);
  font-size: 13px; font-weight: 600;
  color: var(--sa-ink-soft);
  cursor: pointer;
  display: grid; place-items: center;
  transition: all .15s;
}
.lp-pill-radio input { display: none; }
.lp-pill-radio label:has(input:checked) {
  background: var(--sa-purple); color: #fff; border-color: var(--sa-purple);
}

/* Consent checkbox */
.lp-consent {
  display: flex; gap: 10px; align-items: flex-start;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--sa-hair);
}
.lp-consent input {
  margin-top: 4px;
  accent-color: var(--sa-purple);
  flex-shrink: 0;
}
.lp-consent span {
  font-family: var(--sa-font-body);
  font-size: 12px; line-height: 1.45;
  color: var(--sa-ink-soft);
}
.lp-consent a { color: var(--sa-purple); }

/* Footer (buttons + meta) */
.lp-form-card__foot {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 28px 24px;
}
.lp-form-card__nav {
  display: flex; gap: 10px;
  justify-content: space-between;
}
.lp-btn-prev, .lp-btn-submit {
  font-family: var(--sa-font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: 999px;
  cursor: pointer;
  border: 1.5px solid transparent;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  transition: all .15s;
}
.lp-btn-prev {
  background: transparent;
  color: var(--sa-ink-soft);
  border-color: var(--sa-hair);
}
.lp-btn-prev:hover { color: var(--sa-ink); border-color: var(--sa-ink); }
.lp-btn-submit {
  background: var(--sa-purple); color: #fff; border-color: var(--sa-purple);
  flex: 1;
}
.lp-btn-submit:hover { background: var(--sa-purple-deep); border-color: var(--sa-purple-deep); }
.lp-btn-submit:disabled {
  opacity: 0.5; cursor: not-allowed;
}

/* Form messages */
.lp-form-msg {
  padding: 14px 20px;
  border-radius: var(--sa-radius-sm);
  font-family: var(--sa-font-body);
  font-size: 14px;
  margin: 0 28px 20px;
  display: none;
}
.lp-form-msg.is-visible { display: block; }
.lp-form-msg--success {
  background: #ECFDF5; color: #065F46;
  border: 1px solid #A7F3D0;
}
.lp-form-msg--error {
  background: #FEF2F2; color: #991B1B;
  border: 1px solid #FECACA;
}

/* ============================================================
   TRUST STRIP (partner logos)
   ============================================================ */
.lp-trust-strip {
  background: var(--sa-paper);
  border-top: 1px solid var(--sa-hair);
  border-bottom: 1px solid var(--sa-hair);
  padding: 36px 0;
}
.lp-trust-strip__stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.lp-trust-strip__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 40px);
  flex-wrap: nowrap;
  width: 100%;
}
.lp-trust-strip__label {
  font-family: var(--sa-font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--sa-ink-mute);
  text-transform: uppercase;
  flex-shrink: 0;
  white-space: nowrap;
}
.lp-trust-strip__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(16px, 2.5vw, 36px);
  min-width: 0;
}
.lp-trust-strip__featured {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(16px, 2.5vw, 28px);
  width: 100%;
  padding-top: 24px;
  border-top: 1px solid var(--sa-hair);
}
.lp-trust-strip__featured-label {
  font-family: var(--sa-font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sa-ink);
  text-align: center;
  flex-shrink: 0;
  white-space: nowrap;
}
.lp-partner-logo {
  font-family: var(--sa-font-display);
  font-weight: 700; font-size: 18px;
  color: var(--sa-ink-mute);
  letter-spacing: -0.01em;
  opacity: 0.7;
  transition: opacity .15s;
}
.lp-partner-logo:hover { opacity: 1; }
.lp-partner-logo--img {
  display: block;
  height: 32px;
  width: auto;
  max-width: 96px;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity .15s;
}
.lp-partner-logo--img:hover { opacity: 1; }
.lp-partner-logo--wide {
  max-width: 150px;
}
.lp-partner-logo--winaico {
  height: 32px;
  max-width: 40px;
}
.lp-partner-logo--stiebel {
  max-width: 190px;
}
.lp-partner-logo--energieversum {
  height: 58px;
  max-width: 320px;
  width: auto;
  object-fit: contain;
  object-position: center;
  opacity: 1;
}
@media (max-width: 900px) {
  .lp-trust-strip {
    padding: 28px 0;
  }
  .lp-trust-strip__stack {
    gap: 24px;
  }
  .lp-trust-strip__row {
    flex-direction: column;
    gap: 20px;
  }
  .lp-trust-strip__label {
    text-align: center;
  }
  .lp-trust-strip__logos {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
  }
  .lp-trust-strip__featured {
    flex-direction: column;
    gap: 14px;
    padding-top: 20px;
  }
  .lp-trust-strip__featured-label {
    font-size: 11px;
  }
  .lp-partner-logo--img {
    height: 30px;
  }
  .lp-partner-logo--winaico {
    height: 30px;
    max-width: 36px;
  }
  .lp-partner-logo--stiebel {
    max-width: min(190px, 72vw);
  }
  .lp-partner-logo--energieversum {
    height: 48px;
    max-width: min(280px, 88vw);
  }
}
@media (min-width: 901px) and (max-width: 1180px) {
  .lp-trust-strip__row {
    gap: 20px;
  }
  .lp-trust-strip__logos {
    gap: 18px;
  }
  .lp-partner-logo--wide {
    max-width: 120px;
  }
  .lp-partner-logo--energieversum {
    height: 52px;
    max-width: 280px;
  }
}
.lp-partner-logo--badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--sa-purple-soft);
  color: var(--sa-purple);
  padding: 6px 12px; border-radius: 999px;
  font-size: 13px;
  border: 1px solid var(--sa-purple-edge);
  opacity: 1;
}

/* ============================================================
   STATS BANNER (dark)
   ============================================================ */
.sa-hero__wa-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px 24px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease;
}
.sa-hero__wa-bar:hover { background: #20bd5a; }
.sa-hero__wa-bar:focus-visible {
  outline: 2px solid var(--sa-purple-edge);
  outline-offset: -2px;
}
.sa-hero__wa-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.sa-hero__wa-text {
  font-family: var(--sa-font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
@media (max-width: 560px) {
  .sa-hero__wa-bar { padding: 16px 20px; }
  .sa-hero__wa-text { font-size: 14px; }
}

.lp-stats {
  background: var(--sa-ink); color: #fff;
  padding: 56px 0;
}
.lp-stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.lp-stat {
  display: flex; flex-direction: column; gap: 6px;
}
.lp-stat__num {
  font-family: var(--sa-font-display);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 56px);
  letter-spacing: -0.025em; line-height: 1;
  color: #fff;
}
.lp-stat__num .accent { color: var(--sa-purple); }
.lp-stat__lbl {
  font-family: var(--sa-font-body);
  font-size: 14px; color: rgba(255,255,255,0.65);
}
@media (max-width: 720px) {
  .lp-stats__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* ============================================================
   3-STEP "So läuft's ab"
   ============================================================ */
.lp-howto-section { padding: 80px 0; }
.lp-howto-section__head {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; margin-bottom: 48px;
}
.lp-howto-section__head h2 {
  font-family: var(--sa-font-display);
  font-weight: 600; font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.025em; line-height: 1.05;
  margin: 14px 0 0; text-wrap: balance;
}
.lp-howto-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  position: relative;
}
.lp-howto-card {
  background: #fff;
  border: 1px solid var(--sa-hair);
  border-radius: var(--sa-radius-lg);
  padding: 32px 28px;
  text-align: center;
}
.lp-howto-card__num {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: var(--sa-purple-soft);
  color: var(--sa-purple);
  display: grid; place-items: center;
  font-family: var(--sa-font-display);
  font-weight: 700; font-size: 22px;
}
.lp-howto-card h3 {
  font-family: var(--sa-font-display);
  font-size: 20px; font-weight: 600;
  letter-spacing: -0.015em; margin: 0 0 8px;
}
.lp-howto-card p {
  font-family: var(--sa-font-body);
  font-size: 14.5px; line-height: 1.55;
  color: var(--sa-ink-soft); margin: 0;
}
@media (max-width: 860px) {
  .lp-howto-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   MINI CALCULATOR (eyecatcher → form)
   ============================================================ */
.lp-calc-section {
  background: var(--sa-cream-warm);
  padding: 80px 0;
}
.lp-calc {
  background: #fff;
  border-radius: var(--sa-radius-xl);
  border: 1px solid var(--sa-hair);
  padding: 40px;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px;
  align-items: center;
}
.lp-calc__lead h2 {
  font-family: var(--sa-font-display);
  font-weight: 600; font-size: clamp(28px, 3.6vw, 40px);
  letter-spacing: -0.025em; line-height: 1.1;
  margin: 12px 0 12px;
}
.lp-calc__lead p {
  font-family: var(--sa-font-body);
  font-size: 15.5px; line-height: 1.55;
  color: var(--sa-ink-soft); margin: 0;
}
.lp-calc__sliders { margin-top: 24px; }
.lp-calc__row { margin-bottom: 18px; }
.lp-calc__row__top {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 8px;
}
.lp-calc__row__lbl {
  font-family: var(--sa-font-mono);
  font-size: 11px; letter-spacing: 0.1em;
  color: var(--sa-ink-mute); text-transform: uppercase;
}
.lp-calc__row__val {
  font-family: var(--sa-font-display);
  font-size: 18px; font-weight: 600;
  color: var(--sa-ink);
}
.lp-calc__row input[type="range"] {
  width: 100%; accent-color: var(--sa-purple); height: 6px;
}
.lp-calc__result {
  background: linear-gradient(135deg, var(--sa-purple), var(--sa-purple-deep));
  color: #fff;
  border-radius: var(--sa-radius-lg);
  padding: 32px;
  text-align: center;
  position: relative; overflow: hidden;
}
.lp-calc__result::before {
  content: ''; position: absolute;
  top: -50%; right: -20%;
  width: 240px; height: 240px;
  background: rgba(255,255,255,0.1);
  border-radius: 999px; filter: blur(40px);
}
.lp-calc__result > * { position: relative; z-index: 1; }
.lp-calc__result__lbl {
  font-family: var(--sa-font-mono);
  font-size: 11px; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}
.lp-calc__result__num {
  font-family: var(--sa-font-display);
  font-weight: 600;
  font-size: clamp(48px, 6vw, 80px);
  letter-spacing: -0.04em; line-height: 1;
  margin: 8px 0 6px;
  color: #fff;
}
.lp-calc__result__sub {
  font-family: var(--sa-font-body);
  font-size: 14px; color: rgba(255,255,255,0.85);
}
.lp-calc__result__cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 24px;
  padding: 14px 22px;
  background: #fff; color: var(--sa-ink);
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--sa-font-display);
  font-weight: 600; font-size: 14px;
}
.lp-calc__result__cta:hover { background: #f4f4f4; }

@media (max-width: 860px) {
  .lp-calc { grid-template-columns: 1fr; gap: 32px; padding: 28px; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.lp-testimonials {
  padding: 0 0 48px;
  border-bottom: 1px solid var(--sa-hair);
}
.lp-testimonials__head {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; margin-bottom: 32px;
}
.lp-testimonials__head h2 {
  font-family: var(--sa-font-display);
  font-weight: 600; font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.025em; margin: 14px 0 0;
  text-wrap: balance;
}
.lp-testimonials__slider-wrap {
  max-width: 420px;
  margin: 0 auto;
}
.lp-testimonials .sa-hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: visible;
}
.lp-testimonials .sa-hero__slide-track {
  position: absolute;
  inset: 0;
}
.lp-testimonials .sa-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.65s ease;
  pointer-events: none;
  z-index: 0;
}
.lp-testimonials .sa-hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.lp-testimonials .sa-hero__visual-img {
  position: absolute;
  inset: 0;
  border-radius: var(--sa-radius-xl);
  overflow: hidden;
  background: var(--sa-ink);
}
.lp-testimonials .sa-hero__visual-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lp-testimonials .sa-hero__visual-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(21, 18, 28, 0.45));
  pointer-events: none;
  z-index: 1;
}
.lp-testimonials .sa-hero__quote-card {
  position: absolute;
  top: -24px;
  left: -32px;
  max-width: min(320px, calc(100% - 32px));
  padding: 20px 22px;
  background: #fff;
  border-radius: var(--sa-radius-md);
  box-shadow: var(--sa-shadow-float);
  z-index: 2;
  transform: rotate(-2.5deg);
  transform-origin: top left;
}
.lp-testimonials .sa-hero__tstm-nav {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  box-shadow: 0 8px 24px -12px rgba(21, 18, 28, 0.35);
  backdrop-filter: blur(8px);
  pointer-events: auto;
}
.lp-testimonials .sa-hero__tstm-nav.is-collapsed {
  display: none !important;
}
.lp-testimonials .sa-hero__tstm-btn {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--sa-hair);
  background: #fff;
  color: var(--sa-ink);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.lp-testimonials .sa-hero__tstm-btn:hover {
  background: var(--sa-purple-soft);
  border-color: var(--sa-purple);
}
.lp-testimonials .sa-hero__tstm-btn--next {
  background: var(--sa-ink);
  color: #fff;
  border-color: var(--sa-ink);
}
.lp-testimonials .sa-hero__tstm-btn--next:hover {
  background: var(--sa-purple-deep);
  border-color: var(--sa-purple-deep);
}
.lp-testimonials .sa-hero__tstm-dots {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 2px;
}
.lp-testimonials .sa-hero__tstm-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: var(--sa-hair);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.lp-testimonials .sa-hero__tstm-dot.is-active {
  background: var(--sa-purple);
  transform: scale(1.15);
}
.lp-testimonials .sa-hero__tstm-dot:hover { background: var(--sa-purple-soft); }
.lp-testimonials .sa-hero__quote-card .sa-stars {
  color: var(--sa-gold, #ffb300);
  font-size: 14px;
  letter-spacing: 0.06em;
  line-height: 1;
}
.lp-testimonials .sa-hero__quote-card__text {
  font-family: var(--sa-font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--sa-ink);
  margin: 12px 0 0;
}
.lp-testimonials .sa-hero__quote-card__name {
  font-family: var(--sa-font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--sa-ink);
  margin-top: 14px;
}
.lp-testimonials .sa-hero__quote-card__meta {
  font-family: var(--sa-font-mono);
  font-size: 10px;
  color: var(--sa-ink-mute);
  letter-spacing: 0.08em;
  margin-top: 4px;
  text-transform: uppercase;
}
.lp-testimonials .sa-hero__glow {
  position: absolute;
  top: 60px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: var(--sa-purple);
  border-radius: 999px;
  filter: blur(100px);
  opacity: 0.35;
  z-index: -1;
}
@media (max-width: 560px) {
  .lp-testimonials__slider-wrap { max-width: min(100%, 360px); }
  .lp-testimonials .sa-hero__quote-card {
    top: -12px;
    left: 4px;
    max-width: min(200px, calc(100% - 40px));
    padding: 11px 13px;
    transform: rotate(-2deg) scale(0.94);
    transform-origin: top left;
  }
  .lp-testimonials .sa-hero__quote-card .sa-stars {
    font-size: 11px;
    letter-spacing: 0.04em;
  }
  .lp-testimonials .sa-hero__quote-card__text {
    font-size: 12px;
    margin-top: 7px;
    line-height: 1.45;
  }
  .lp-testimonials .sa-hero__quote-card__name {
    font-size: 12px;
    margin-top: 8px;
  }
  .lp-testimonials .sa-hero__quote-card__meta {
    font-size: 9px;
    margin-top: 2px;
  }
  .lp-testimonials .sa-hero__tstm-nav { bottom: 20px; }
  .lp-testimonials .sa-hero__tstm-btn { width: 32px; height: 32px; font-size: 14px; }
}

/* ============================================================
   FINAL CTA (different per variant)
   ============================================================ */
.lp-final-cta {
  padding: 64px 0;
  text-align: center;
}
.lp-final-cta h2 {
  font-family: var(--sa-font-display);
  font-weight: 600; font-size: clamp(32px, 4.5vw, 56px);
  letter-spacing: -0.03em; margin: 0 0 16px;
  text-wrap: balance;
}
.lp-final-cta p {
  font-family: var(--sa-font-body);
  font-size: 17px; color: var(--sa-ink-soft);
  margin: 0 0 32px;
  max-width: 600px; margin-left: auto; margin-right: auto;
}
.lp-final-cta__buttons {
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: center;
}
.lp-final-cta__buttons a {
  font-family: var(--sa-font-display);
  font-weight: 600; font-size: 15px;
  padding: 16px 28px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
}

/* ============================================================
   LP MINI-FOOTER (no nav)
   ============================================================ */
.lp-footer {
  background: var(--sa-ink); color: #fff;
  padding: 36px 0;
}
.lp-footer__inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
.lp-footer__brand {
  display: flex; align-items: center; gap: 10px;
}
.lp-footer__brand .sa-brand__name { color: #fff; }
.lp-footer__brand .sa-brand__name .accent { color: var(--sa-purple); }
.lp-footer__links {
  display: flex; gap: 20px; flex-wrap: wrap;
  font-family: var(--sa-font-body); font-size: 13px;
}
.lp-footer__links a {
  color: rgba(255,255,255,0.6); text-decoration: none;
}
.lp-footer__links a:hover { color: #fff; }
.lp-footer__copy {
  font-family: var(--sa-font-mono); font-size: 11px;
  letter-spacing: 0.08em; color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}

/* ============================================================
   VARIANT B (Bold) — overrides
   ============================================================ */
.lp--bold .lp-hero {
  background: linear-gradient(180deg, var(--sa-cream), var(--sa-cream-warm));
  padding-top: 80px;
}
.lp--bold .lp-hero h1 { font-size: clamp(40px, 6.5vw, 88px); }
.lp--bold .lp-hero__lead .sa-pill {
  background: var(--sa-ink); color: #fff; border-color: var(--sa-ink);
}
.lp--bold .lp-hero__lead .sa-pill::before { background: var(--sa-purple); }
.lp--bold .lp-final-cta {
  background: linear-gradient(135deg, var(--sa-purple), var(--sa-purple-deep));
  color: #fff; padding: 80px 0;
}
.lp--bold .lp-final-cta h2 { color: #fff; }
.lp--bold .lp-final-cta p { color: rgba(255,255,255,0.85); }

/* ============================================================
   VARIANT C (Konkret-Sparen) — overrides
   ============================================================ */
.lp--konkret .lp-hero {
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(107,45,201,0.08), transparent 60%),
    var(--sa-cream);
}
.lp--konkret .lp-hero h1 {
  font-size: clamp(40px, 5.5vw, 76px);
}
.lp--konkret .lp-hero__bignumber {
  font-family: var(--sa-font-display);
  font-weight: 600;
  font-size: clamp(64px, 10vw, 140px);
  letter-spacing: -0.045em;
  line-height: 0.92;
  background: linear-gradient(120deg, var(--sa-purple), var(--sa-purple-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin: 12px 0 8px;
  display: block;
}
.lp--konkret .lp-hero__bignumber-sub {
  font-family: var(--sa-font-display);
  font-weight: 500; font-size: 18px;
  color: var(--sa-ink-soft);
}

/* Cost vs. PV comparison */
.lp--konkret .lp-compare {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-top: 28px;
}
.lp--konkret .lp-compare-col {
  padding: 20px;
  border-radius: var(--sa-radius-md);
  border: 1px solid var(--sa-hair);
}
.lp--konkret .lp-compare-col--bad {
  background: var(--sa-cream-warm);
}
.lp--konkret .lp-compare-col--good {
  background: var(--sa-purple-soft);
  border-color: var(--sa-purple-edge);
}
.lp--konkret .lp-compare-col h4 {
  font-family: var(--sa-font-mono);
  font-size: 10px; letter-spacing: 0.15em;
  color: var(--sa-ink-mute); text-transform: uppercase;
  margin: 0 0 8px;
}
.lp--konkret .lp-compare-col--good h4 { color: var(--sa-purple); }
.lp--konkret .lp-compare-col__num {
  font-family: var(--sa-font-display);
  font-weight: 600; font-size: 28px;
  color: var(--sa-ink); letter-spacing: -0.02em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .lp-hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .lp-hero__lead { position: static; }
  .lp-form-card { max-width: 480px; margin: 0 auto; }
}
@media (max-width: 560px) {
  .lp-hero { padding: 32px 0 56px; }
  .lp-radios { grid-template-columns: 1fr; }
  .lp-form-card__head, .lp-form-card__body, .lp-form-card__foot { padding-left: 20px; padding-right: 20px; }
  .lp-form-msg { margin: 0 20px 20px; }
}
