/* ══════════════════════════════════════════════════════
   TRANSFORMATIONS-SECTION — Full Width
   ══════════════════════════════════════════════════════ */

/* Breakout aus site-shell */
.ts-section {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 104px;
  background:
    radial-gradient(ellipse at 10% 90%, rgba(209,248,67,0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 10%, rgba(93,144,152,0.12) 0%, transparent 55%),
    #0F4F44;
  padding: 80px 0 72px;
}

.ts-inner {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

/* Kopf */
.ts-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.ts-eyebrow {
  color: var(--lime-400) !important;
  opacity: 1 !important;
}

.ts-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 10px 0 0;
  color: #fff;
}

/* Nav-Buttons */
.ts-nav {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.ts-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
  backdrop-filter: blur(8px);
}

.ts-btn:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.35);
  transform: scale(1.06);
}

/* Scroll-Track */
.ts-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}

.ts-track::-webkit-scrollbar { display: none; }

/* Karte — vertikal: Bilder oben, Info unten */
.ts-card {
  flex: 0 0 min(600px, 90vw);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
}

/* Bild-Bereich — volle Kartenbreite, nebeneinander */
.ts-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex-shrink: 0;
  height: 440px;
}

.ts-img-wrap {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.ts-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0.9);
  transition: transform 0.4s ease;
}

.ts-card:hover .ts-img-wrap img {
  transform: scale(1.04);
}

.ts-img-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(15,79,68,0.82);
  color: rgba(255,255,255,0.9);
  border-radius: 999px;
  padding: 5px 14px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.1);
}

.ts-img-label--after {
  background: rgba(209,248,67,0.88);
  color: #0a3d30;
  border-color: transparent;
}

/* Vertikaler Divider zwischen den Bildern */
.ts-img-wrap:first-child {
  border-right: 2px solid rgba(255,255,255,0.15);
}

/* Info-Bereich — kompakt unter den Bildern */
.ts-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 24px;
}

.ts-info-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ts-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--av, var(--teal, #4A7C82));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 800;
}

.ts-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--lime-400);
  background: rgba(209,248,67,0.12);
  border: 1px solid rgba(209,248,67,0.25);
  border-radius: 999px;
  padding: 3px 11px;
}

/* Kilo-Stat */
.ts-stat {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.ts-kg {
  font-size: 3.6rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  color: #fff;
}

.ts-unit {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
}

/* Zitat */
.ts-quote {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin: 0;
  font-style: italic;
  border-left: 2px solid rgba(209,248,67,0.4);
  padding-left: 12px;
}

/* Meta */
.ts-meta {
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
}

.ts-meta strong {
  color: rgba(255,255,255,0.85);
  font-weight: 700;
}

/* Disclaimer */
.ts-disclaimer {
  margin-top: 28px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
}

/* ── Responsive ── */
@media (max-width: 700px) {
  .ts-card { flex: 0 0 min(480px, 90vw); }
  .ts-images { height: 320px; }
}

@media (max-width: 500px) {
  .ts-section { margin-top: 72px; padding: 52px 0 48px; }
  .ts-card { flex: 0 0 min(320px, 88vw); }
  .ts-images { height: 240px; }
  .ts-info { padding: 16px 18px; gap: 10px; }
  .ts-kg { font-size: 2.6rem; }
  .ts-head { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ══════════════════════════════════════════════════════
   PRODUCT HERO — Full Width
   ══════════════════════════════════════════════════════ */
.ph-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  width: 100%;
}

/* ── Linkes Panel: Visuell ── */
.ph-visual {
  position: relative;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(209,248,67,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(93,144,152,0.25) 0%, transparent 55%),
    linear-gradient(160deg, #0a3d30 0%, #0F4F44 45%, #1a6b5a 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
}

.ph-visual-bg {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Floating Eyebrow Badge */
.ph-eyebrow-badge {
  position: absolute;
  top: 36px;
  left: 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
}

.ph-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime-400);
  box-shadow: 0 0 0 4px rgba(209,248,67,0.22);
  flex-shrink: 0;
}

/* Produktbild */
.ph-product-img-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.ph-product-glass {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 80%;
}

.ph-product-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.3));
}

/* Stats-Badge: absolut in der Ecke des ph-visual Panels */
.ph-product-blur-card {
  position: absolute;
  bottom: 32px;
  right: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 14px 18px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 3;
}

.ph-product-blur-card .ph-stat-icon {
  position: static;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(209, 248, 67, 0.18);
  color: var(--lime-400);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ph-product-blur-card strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.ph-product-blur-card span {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 3px;
  line-height: 1.3;
}

/* Zentrales Mockup-Karte */
.ph-mockup {
  width: 100%;
  max-width: 360px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 24px;
  backdrop-filter: blur(20px);
  position: relative;
  z-index: 2;
}

.ph-mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.ph-mockup-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
}

.ph-mockup-tag {
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(209,248,67,0.15);
  color: var(--lime-400);
  border: 1px solid rgba(209,248,67,0.3);
  border-radius: 999px;
  padding: 3px 10px;
  letter-spacing: 0.06em;
}

/* Steps in Mockup */
.ph-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 8px;
  transition: background 0.2s;
}

.ph-step:last-child { margin-bottom: 0; }

.ph-step--active {
  background: rgba(209,248,67,0.08);
  border-color: rgba(209,248,67,0.22);
}

.ph-step-num {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: rgba(255,255,255,0.45);
  flex-shrink: 0;
}

.ph-step-num--active,
.ph-step-num--current {
  background: rgba(209,248,67,0.18);
  color: var(--lime-400);
}

.ph-step-body {
  flex: 1;
}

.ph-step-body strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}

.ph-step-body span {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.42);
  margin-top: 1px;
}

.ph-step-check--done {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(209,248,67,0.18);
  color: var(--lime-400);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ph-step-spinner {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(209,248,67,0.3);
  border-top-color: var(--lime-400);
  animation: ph-spin 1s linear infinite;
  flex-shrink: 0;
}

@keyframes ph-spin {
  to { transform: rotate(360deg); }
}

/* Floating Stats Badge */
.ph-stat-badge {
  position: absolute;
  bottom: 48px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 16px;
  padding: 12px 18px;
  backdrop-filter: blur(16px);
  z-index: 3;
}

.ph-stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--lime-400);
  color: var(--green-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  flex-shrink: 0;
}

.ph-stat-badge strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.ph-stat-badge span {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}

/* Watermark */
.ph-watermark {
  position: absolute;
  bottom: 28px;
  left: 36px;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.1);
  user-select: none;
}

/* ── Rechtes Panel: Info & CTA ── */
.ph-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 64px 60px 56px;
  background: var(--sand-100);
}

.ph-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green-700);
  margin: 0 0 14px;
}

.ph-heading {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.04;
  color: var(--ink-900);
  margin: 0 0 18px;
}

.ph-heading em {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 0.9em;
  color: var(--green-700);
}

/* Rating */
.ph-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.ph-stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
}

.ph-stars svg {
  width: 17px;
  height: 17px;
}

.ph-rating-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-700);
}

.ph-desc {
  font-size: 0.97rem;
  color: var(--ink-700);
  line-height: 1.7;
  margin: 0 0 24px;
  max-width: 460px;
}

/* Benefits */
.ph-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ph-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-900);
}

.ph-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-700), #4f8f96);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Pricing Card */
.ph-price-card {
  background: #fff;
  border: 1px solid rgba(20,59,50,0.1);
  border-radius: 20px;
  padding: 22px 24px;
  box-shadow: 0 8px 28px rgba(20,59,50,0.07);
  max-width: 440px;
}

.ph-price-top {
  margin-bottom: 12px;
}

.ph-save-badge {
  display: inline-block;
  background: rgba(47,112,105,0.1);
  color: var(--green-700);
  border: 1px solid rgba(47,112,105,0.2);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 12px;
  letter-spacing: 0.04em;
}

.ph-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}

.ph-price-value {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--ink-900);
}

.ph-price-period {
  font-size: 0.88rem;
  color: var(--ink-700);
  font-weight: 600;
  text-decoration: line-through;
  opacity: 0.5;
}

.ph-price-discount {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.ph-discount-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
  border: 1px solid rgba(22, 163, 74, 0.22);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 2px 10px;
}

.ph-price-crossed {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-700);
  text-decoration: line-through;
  opacity: 0.4;
}

.ph-price-sub {
  font-size: 0.78rem;
  color: var(--ink-700);
  margin: 0 0 16px;
}

.ph-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-700), #4f8f96);
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(47,112,105,0.28);
  transition: transform 0.18s, box-shadow 0.18s;
  margin-bottom: 12px;
}

.ph-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(47,112,105,0.35);
}

.ph-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--ink-700);
  font-weight: 600;
}

/* ── Responsive Product Hero ─────────────────────────── */
@media (max-width: 1000px) {
  .ph-info {
    padding: 48px 40px;
  }
}

@media (max-width: 800px) {
  .ph-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .ph-visual {
    min-height: 380px;
    padding: 48px 32px 56px;
  }

  .ph-eyebrow-badge {
    top: 20px;
    left: 20px;
  }

  .ph-mockup {
    max-width: 100%;
  }

  .ph-stat-badge {
    bottom: 20px;
    right: 20px;
  }

  .ph-product-glass {
    max-width: 320px;
    padding: 18px;
  }

  .ph-product-blur-card {
    bottom: 20px;
    right: 20px;
    padding: 11px 14px;
  }

  .ph-watermark { display: none; }

  .ph-info {
    padding: 40px 24px 48px;
  }

  .ph-price-card {
    max-width: 100%;
  }
}

@media (max-width: 500px) {
  .ph-visual {
    min-height: 320px;
    padding: 40px 20px 48px;
  }

  .ph-heading {
    font-size: 1.8rem;
  }

  .ph-step-body span { display: none; }
}

/* ── Gewichtsrechner ──────────────────────────────────── */
.wc-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 104px 0 0;
}

/* Linke Seite – Klinische Aussage */
.wc-stat-heading {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 12px 0 28px;
}

.wc-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(20, 59, 50, 0.1);
  border-radius: 20px;
  padding: 16px 24px;
  box-shadow: 0 8px 24px rgba(20, 59, 50, 0.07);
  margin-bottom: 24px;
}

.wc-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(93, 144, 152, 0.15), rgba(47, 112, 105, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--green-700);
  flex-shrink: 0;
}

.wc-badge-value {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--ink-900);
  line-height: 1;
}

.wc-badge-label {
  display: block;
  font-size: 0.82rem;
  color: var(--ink-700);
  margin-top: 3px;
}

.wc-source-text {
  font-size: 0.92rem;
  color: var(--ink-700);
  line-height: 1.65;
  margin: 0 0 10px;
  max-width: 420px;
}

.wc-source-link {
  font-size: 0.8rem;
  color: var(--green-700);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.75;
  transition: opacity 0.15s;
}
.wc-source-link:hover { opacity: 1; }

/* Rechte Seite – Interaktiver Rechner */
.wc-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(20, 59, 50, 0.1);
  border-radius: 28px;
  padding: 36px 32px;
  box-shadow: 0 16px 48px rgba(20, 59, 50, 0.08);
  backdrop-filter: blur(12px);
}

.wc-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink-900);
  text-align: center;
  margin: 0 0 24px;
  line-height: 1.35;
}

.wc-card-sub {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-700);
  text-align: center;
  margin: 0 0 10px;
}

.wc-weight-display {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--ink-900);
  background: var(--sand-100);
  border: 1px solid rgba(20, 59, 50, 0.1);
  border-radius: 999px;
  padding: 8px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  max-width: 160px;
  margin: 0 auto 24px;
}

/* Slider */
.wc-slider-wrap {
  margin-bottom: 28px;
}

.wc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(
    to right,
    var(--green-700) 0%,
    var(--green-500) var(--pct, 30%),
    rgba(20, 59, 50, 0.12) var(--pct, 30%),
    rgba(20, 59, 50, 0.12) 100%
  );
  outline: none;
  cursor: pointer;
  display: block;
}

.wc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--green-700);
  box-shadow: 0 4px 12px rgba(47, 112, 105, 0.25);
  cursor: grab;
  transition: box-shadow 0.15s, transform 0.15s;
}

.wc-slider::-webkit-slider-thumb:active {
  cursor: grabbing;
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(47, 112, 105, 0.35);
}

.wc-slider::-moz-range-thumb {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--green-700);
  box-shadow: 0 4px 12px rgba(47, 112, 105, 0.25);
  cursor: grab;
}

.wc-slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 0.75rem;
  color: var(--ink-700);
  font-weight: 600;
}

/* Ergebnis */
.wc-result {
  background: linear-gradient(135deg, rgba(15, 79, 68, 0.05), rgba(93, 144, 152, 0.08));
  border: 1px solid rgba(47, 112, 105, 0.15);
  border-radius: 20px;
  padding: 20px 24px;
  text-align: center;
  margin-bottom: 24px;
}

.wc-result-label {
  font-size: 0.82rem;
  color: var(--ink-700);
  margin: 0 0 8px;
}

.wc-result-value {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--ink-900);
  margin: 0 0 8px;
  line-height: 1;
}

.wc-result-disclaimer {
  font-size: 0.72rem;
  color: var(--ink-700);
  opacity: 0.7;
  margin: 0;
  line-height: 1.5;
}

.wc-cta {
  width: 100%;
  justify-content: center;
}

/* ── Responsive Rechner ──────────────────────────────── */
@media (max-width: 900px) {
  .wc-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .wc-section {
    padding-top: 72px;
  }
  .wc-card {
    padding: 24px 20px;
  }
  .wc-badge {
    gap: 12px;
    padding: 14px 18px;
  }
  .wc-badge-value {
    font-size: 1.6rem;
  }
}

/* ── Abnehm-Prozess Timeline ─────────────────────────── */
.phase-section {
  padding: 104px 0 0;
}

.phase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}

/* Connecting line between cards */
.phase-grid::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  background: linear-gradient(90deg, var(--green-700), var(--green-500));
  opacity: 0.18;
}

.phase-card {
  display: flex;
  flex-direction: column;
  padding: 0 28px 40px 0;
  position: relative;
}

.phase-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 52px;
  right: 0;
  width: 1px;
  height: calc(100% - 100px);
  background: linear-gradient(180deg, rgba(20,59,50,0.1), rgba(20,59,50,0.04));
}

.phase-card:not(:first-child) {
  padding-left: 28px;
  padding-right: 0;
}

.phase-card:nth-child(2) {
  padding: 0 28px 40px;
}

/* Visual area (icon + timeline dot) */
.phase-visual {
  position: relative;
  margin-bottom: 28px;
}

.phase-icon-ring {
  width: 72px;
  height: 72px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.phase-visual--1 .phase-icon-ring {
  background: linear-gradient(135deg, var(--mint-100), rgba(209,248,67,0.2));
  color: var(--green-700);
  border: 1px solid rgba(47,112,105,0.12);
}

.phase-visual--2 .phase-icon-ring {
  background: linear-gradient(135deg, rgba(47,112,105,0.12), rgba(93,144,152,0.15));
  color: var(--green-700);
  border: 1px solid rgba(47,112,105,0.15);
}

.phase-visual--3 .phase-icon-ring {
  background: linear-gradient(135deg, var(--green-700), #4f8f96);
  color: var(--white);
  border: none;
  box-shadow: 0 8px 24px rgba(47,112,105,0.28);
}

/* Timeline dot at bottom of each card */
.phase-visual-dot {
  position: absolute;
  bottom: -40px;
  left: 35px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-700);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 3px rgba(47,112,105,0.18);
  z-index: 2;
}

.phase-visual--1 .phase-visual-dot { background: rgba(47,112,105,0.4); }
.phase-visual--2 .phase-visual-dot { background: var(--green-700); }
.phase-visual--3 .phase-visual-dot { display: none; }

.phase-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.phase-period {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink-900);
}

.phase-pill {
  display: inline-block;
  width: fit-content;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: rgba(47,112,105,0.09);
  color: var(--green-700);
  border: 1px solid rgba(47,112,105,0.15);
}

.phase-pill--mid {
  background: rgba(47,112,105,0.13);
  border-color: rgba(47,112,105,0.22);
}

.phase-pill--end {
  background: linear-gradient(135deg, rgba(209,248,67,0.18), rgba(47,112,105,0.12));
  border-color: rgba(209,248,67,0.4);
  color: var(--green-800);
}

.phase-text {
  font-size: 0.92rem;
  color: var(--ink-700);
  line-height: 1.7;
  margin: 0;
}

/* ── Responsive Timeline ─────────────────────────────── */
@media (max-width: 860px) {
  .phase-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .phase-grid::before { display: none; }

  .phase-card,
  .phase-card:nth-child(2),
  .phase-card:not(:first-child) {
    padding: 0 0 40px 56px;
    border-left: 2px solid rgba(47,112,105,0.15);
    margin-left: 4px;
  }

  .phase-card:last-child {
    border-left-color: transparent;
  }

  .phase-card::after { display: none; }

  .phase-icon-ring {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    position: absolute;
    left: -83px;
  }

  .phase-visual {
    position: relative;
    min-height: 56px;
    margin-bottom: 16px;
  }

  .phase-visual-dot {
    left: -9px;
    bottom: auto;
    top: 22px;
  }
}

@media (max-width: 600px) {
  .phase-section {
    padding-top: 72px;
  }

  .phase-card,
  .phase-card:nth-child(2),
  .phase-card:not(:first-child) {
    padding-left: 48px;
  }

  .phase-icon-ring {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    left: -72px;
  }

  .phase-period {
    font-size: 1.1rem;
  }
}

@media (max-width: 600px) {
  .wc-section {
    padding-top: 72px;
  }

  .wc-card {
    padding: 24px 20px;
  }

  .wc-badge {
    gap: 12px;
    padding: 14px 18px;
  }

  .wc-badge-value {
    font-size: 1.6rem;
  }
}

/* ══════════════════════════════════════════════════════
   WARUM MOUNJARO — Why-Section
   ══════════════════════════════════════════════════════ */

.why-section {
  padding: 96px 0 80px;
}

.why-container {
  background: var(--white);
  border: 1px solid var(--sand-300);
  border-radius: var(--radius-xl);
  padding: 64px 56px 56px;
}

/* Header */
.why-top {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.why-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--ink-900);
  margin: 14px 0 20px;
}

.why-heading em {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  color: var(--green-700);
  font-size: 1.05em;
}

.why-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-700);
  margin: 0;
}

/* Card Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.why-card {
  background: var(--sand-100);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--mint-100);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--ink-900);
  margin: 0;
}

.why-card p {
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--ink-700);
  margin: 0;
}

/* Callout */
.why-callout {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 100%);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  margin-top: 12px;
}

.why-callout-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(209,248,67,0.15);
  border: 1px solid rgba(209,248,67,0.25);
  color: var(--lime-400);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-callout-body {
  flex: 1;
}

.why-callout-body strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 10px;
}

.why-callout-body p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

/* Responsive */
@media (max-width: 960px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .why-section {
    padding: 64px 0 56px;
  }

  .why-container {
    padding: 36px 24px 32px;
    border-radius: var(--radius-lg);
  }

  .why-top {
    margin-bottom: 40px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card:last-child {
    grid-column: auto;
  }

  .why-card {
    padding: 28px 24px;
  }

  .why-callout {
    flex-direction: column;
    padding: 28px 24px;
    gap: 16px;
  }
}

/* ══════════════════════════════════════════════════════
   ÄRZTE-VORSTELLUNG — Doc Section
   ══════════════════════════════════════════════════════ */

.doc-section {
  padding: 96px 0 104px;
}

/* Header */
.doc-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}

.doc-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--ink-900);
  margin: 14px 0 18px;
}

.doc-heading em {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  color: var(--green-700);
  font-size: 1.05em;
}

.doc-subtext {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-700);
  margin: 0;
}

/* Card Stack */
.doc-cards {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Individual Card */
.doc-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--sand-300);
  min-height: 460px;
}

/* Flipped card: photo on right */
.doc-card--flip {
  grid-template-columns: 1fr 340px;
}

.doc-card--flip .doc-photo-wrap {
  order: 2;
}

.doc-card--flip .doc-info {
  order: 1;
}

/* Photo Panel */
.doc-photo-wrap {
  position: relative;
  overflow: hidden;
  background: var(--sand-200);
}

.doc-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}

.doc-card:hover .doc-photo {
  transform: scale(1.03);
}

.doc-photo-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(15, 79, 68, 0.88);
  backdrop-filter: blur(12px);
  color: var(--lime-400);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(209,248,67,0.25);
}

/* Info Panel */
.doc-info {
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.doc-info-top {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.doc-role {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-700);
}

.doc-name {
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--ink-900);
  margin: 0;
}

.doc-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--green-800);
  margin: 0;
  padding-left: 18px;
  border-left: 3px solid var(--lime-400);
}

.doc-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.doc-tags li {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-700);
  background: var(--mint-100);
  border: 1px solid var(--sand-300);
  border-radius: 999px;
  padding: 4px 13px;
}

.doc-line {
  height: 1px;
  background: var(--sand-300);
}

.doc-credentials {
  font-size: 0.8rem;
  color: var(--ink-700);
  line-height: 1.5;
  margin: 0;
}

/* Responsive */
@media (max-width: 960px) {
  .doc-card,
  .doc-card--flip {
    grid-template-columns: 1fr;
    grid-template-rows: 320px auto;
  }

  .doc-card--flip .doc-photo-wrap,
  .doc-card--flip .doc-info {
    order: unset;
  }

  .doc-info {
    padding: 36px 36px;
  }
}

@media (max-width: 600px) {
  .doc-section {
    padding: 64px 0 80px;
  }

  .doc-header {
    margin-bottom: 40px;
  }

  .doc-card,
  .doc-card--flip {
    grid-template-rows: 280px auto;
  }

  .doc-info {
    padding: 28px 24px;
    gap: 16px;
  }

  .doc-quote {
    font-size: 1.1rem;
  }
}

/* ── Balance Program CTA Banner (shared: mounjaro + wegovy) ── */
.wegovy-balance-banner {
  background: linear-gradient(100deg, var(--green-900) 0%, #0f5a48 100%);
  border-top: 1px solid rgba(209, 248, 67, 0.15);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.wegovy-balance-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.wegovy-balance-left {
  flex-shrink: 0;
  max-width: 320px;
}

.wegovy-balance-eyebrow {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime-400);
  margin-bottom: 6px;
}

.wegovy-balance-claim {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin: 0;
}

.wegovy-balance-claim strong {
  color: #fff;
  font-weight: 700;
}

.wegovy-balance-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px 28px;
  flex-wrap: wrap;
  flex: 1;
  margin: 0;
  padding: 0;
}

.wegovy-balance-list li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}

.wegovy-balance-list li svg {
  color: var(--lime-400);
  flex-shrink: 0;
}

.wegovy-balance-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 11px 24px;
  background: var(--lime-400);
  color: var(--green-900);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.12s;
  white-space: nowrap;
}

.wegovy-balance-cta:hover { opacity: 0.88; }

@media (max-width: 960px) {
  .wegovy-balance-inner {
    flex-wrap: wrap;
    gap: 20px 32px;
    padding: 24px 32px;
  }

  .wegovy-balance-left { max-width: 100%; }

  .wegovy-balance-list { gap: 8px 24px; }

  .wegovy-balance-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .wegovy-balance-inner {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .wegovy-balance-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .wegovy-balance-list li { white-space: normal; }
}

