    :root {
      --accent: #62d2a2;         /* Dein Mint-Grün */
      --accent2: #26b793;       /* Helleres Grün */
      --primary: #2c3e50;        /* Dunkelblau/Grau für Text */
      --muted: #6b7280;          /* Grau für Nebentexte */
      --bg-surface: #f9fafb;     /* Leichter Hintergrund */
      --bg-card: #ffffff;        /* Karten-Hintergrund */
      --radius: 16px;
      --shadow: 0 10px 30px -10px rgba(0,0,0,0.08);
      --max-width: 960px;
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      color: var(--primary);
      line-height: 1.6;
      background: #fff;
    }

    h1, h2, h3 { line-height: 1.2; margin-bottom: 1rem; color: #111; }
    h1 { font-size: 2.5rem; letter-spacing: -1px; font-weight: 800; }
    h2 { font-size: 2rem; letter-spacing: -0.5px; }
    h3 { font-size: 1.35rem; margin-top: 0; }
    p { margin-top: 0; margin-bottom: 1rem; }

    /* Container */
    .wrap {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 25px;
      padding-top: 25px;
    }


.hero {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  margin-bottom: 14px;
}

.hero h2 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 600;
}

.hero p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
}

.hero .guide {
  margin-top: 12px;
  padding: 10px 14px;
  background: var(--accent-soft);
  border-radius: 12px;
  font-size: 14px;
  color: #355a45;
  font-weight: 500;
}

.hero-sub {
  font-size: 20px; 
}

.trust-inline {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 14px;
  box-shadow: var(--shadow);
  font-size: 14px;
}

.trust-inline strong {
  font-weight: 600;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  margin-bottom: 14px;
}

.kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 6px;
}

.title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
}

.desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 14px;
}

.hint {
  font-size: 13px;
  color: #355a45;
  margin-top: 8px;
  margin-bottom: 14px;
}

.btn {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
}

.btn.secondary {
  background: #fff;
  color: var(--accent);
}

.btn + .btn {
 /* margin-top: 10px;*/
}

.product-image {
  width: 100%;
  border-radius: 12px;
  margin: 10px 0 14px;
  border: 1px solid var(--border);
}

.hero-image {
  position: relative;
  margin-top: 14px;
  border-radius: 14px;
  overflow: hidden;
}

.hero-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.70);
  border: 1px solid var(--border);
  color: #2f3a34;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow);
  text-transform: uppercase;
}

.hero-image img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 420px;
}

.trust-wrap {
  display: flex;
  gap: 14px;
  align-items: center;
}

.trust-wrap img {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.quote {
  font-size: 14px;
  color: #355a45;
  background: var(--accent-soft);
  padding: 14px;
  border-radius: 12px;
  margin-bottom: 10px;
}

.quote span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
}

.footer-social {
  margin: 3rem auto 4rem;
  max-width: 640px;
  text-align: center;
}

.footer-social h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.footer-social p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}

.social-links a {
  margin: 0 0.75rem;
  font-size: 0.9rem;
  text-decoration: none;
  color: #333;
  border-bottom: 1px dotted #aaa;
}

.social-links a:hover {
  border-bottom-style: solid;
}



/* Spezifische Stile für "Mein Weg" Seite */
.divider {
    border: 0px;
    border-top-width: 0px;
    border-top-style: none;
    border-top-color: currentcolor;
  border-top: 1px solid #eee;
}
    .heroGrid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 50px;
      align-items: start;
      padding: 60px 0;
    }

    /* Linke Seite Hero */
    .heroCard h1 { margin-top: 16px; margin-bottom: 20px; }
    .heroCard .lead { font-size: 1.15rem; color: var(--primary); margin-bottom: 32px; font-weight: 500; }
    
    /* Hervorhebung im Text */
    .highlight { background: linear-gradient(120deg, rgba(98, 210, 162, 0.3) 0%, rgba(98, 210, 162, 0) 100%); padding: 0 4px; border-radius: 4px; }

    /* Pill Badge */
    .pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 12px;
      border-radius: 99px;
      background: #eefbf6;
      color: #0d5f41;
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 10px;
    }
    .pill .dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; }

    /* Rechte Seite (SideCard) */
    .sideCard {
      background: var(--bg-card);
      padding: 30px;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      border: 1px solid rgba(0,0,0,0.05);
      position: sticky;
      top: 20px;
    }

    /* BILD DES COACHES */
    .face-container {
      position: relative;
      margin: -30px -30px 20px -30px; /* Zieht das Bild an die Ränder der Karte */
    }
    .hero-face {
      width: 100%;
      height: auto;
      display: block;
      border-radius: var(--radius) var(--radius) 0 0;
      aspect-ratio: 16/10; 
      object-fit: cover;
      object-position: top; /* Fokus auf Gesicht */
    }
    .face-tag {
      position: absolute;
      bottom: 10px;
      right: 10px;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(4px);
      padding: 6px 12px;
      border-radius: 8px;
      font-size: 0.7rem;
      font-weight: 700;
      color: var(--primary);
      text-transform: uppercase;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .face-caption {
        font-size: 0.9rem;
        line-height: 1.5;
        color: var(--primary);
        margin-bottom: 24px;
        padding-bottom: 20px;
        border-bottom: 1px solid #eee;
    }

    /* =========================================
       SZENE-LISTE (Validierung)
       ========================================= */
    .sceneList {
      list-style: none;
      padding: 0;
      margin: 0 0 32px 0;
      display: grid;
      gap: 20px;
    }
    .scene {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }
    .scene .ico {
      flex-shrink: 0;
      width: 32px;
      height: 32px;
      background: #eefbf6; /* Weicher als vorher */
      color: #0d5f41;
      font-weight: 800;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 2px;
      font-size: 1rem;
    }
    .scene b { display: block; color: #111; margin-bottom: 4px; font-size: 1.05rem; }
    .scene p { margin: 0; font-size: 0.95rem; color: var(--muted); line-height: 1.5; }

    /* =========================================
       CHECKLISTE & KPIs
       ========================================= */
    .checklist { margin: 20px 0; display: grid; gap: 10px; }
    .tick { font-size: 0.95rem; display: flex; gap: 10px; }
    .tick i { color: var(--accent); font-style: normal; font-weight: bold; }

    .kpi {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 20px;
      padding-top: 20px;
      border-top: 1px solid #eee;
    }
    .kpi .box { text-align: center; }
    .kpi .big { font-size: 1.4rem; font-weight: 800; color: var(--accent); line-height: 1; }
    .kpi .small { font-size: 0.75rem; text-transform: uppercase; color: var(--muted); letter-spacing: 0.5px; margin-top: 4px;}

    .note {
      margin-top: 16px;
      padding: 12px;
      border-radius: 8px;
      background: #f8f9fa;
      color: var(--muted);
      font-size: 0.8rem;
      border: 1px solid rgba(0,0,0,0.05);
    }

    /* =========================================
       BUTTONS & CTAs
       ========================================= */
    .heroActions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
    
    .btn, .cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 24px;
      border-radius: 12px;
      font-weight: 700;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.2s ease;
      border: none;
      font-size: 1rem;
    }

    .cta, .btn.primary {
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      color: #0b3d2e;
      box-shadow: 0 4px 14px rgba(98, 210, 162, 0.4);
    }
    .cta:hover, .btn.primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(98, 210, 162, 0.6); }

    .cta.secondary, .btn.secondary {
      background: #fff;
      color: var(--primary);
      border: 2px solid #eee;
      box-shadow: none;
    }
    .cta.secondary:hover, .btn.secondary:hover { border-color: #ddd; background: #f9f9f9; }

    .cta.ghost { background: var(--primary); color: #fff; width: 100%; }
    .micro { font-size: 0.85rem; color: var(--muted); margin-top: 12px; }

    /* =========================================
       SECTIONS: GOAL & METHODE
       ========================================= */
    section { 
    padding: 10px 0;
    margin: 80px 0px;
    }
    section#pain { background: #fff; padding-top: 0; }
    .card.goal {       
    background: #f4fcf8;
  border: 1px solid #96e1c1;
  border-radius: var(--radius);
     } /* Mint Background */

    .kicker {
      text-transform: uppercase;
      font-size: 0.85rem;
      font-weight: 800;
      letter-spacing: 1.5px;
      color: var(--accent); /* Accent Color for Kicker */
      margin-bottom: 12px;
      display: block;
    }

    /* Ziel Grid */
    .goal-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 40px;
    }
    .goal-card {
      background: #fff;
      border-radius: var(--radius);
      padding: 30px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.03);
      border: 1px solid rgba(98, 210, 162, 0.2);
    }
    .goal-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 12px; color: #0b3d2e; }
    .goal-card p { font-size: 0.95rem; margin: 0; color: var(--primary); }
    .icon-box { font-size: 2.2rem; margin-bottom: 16px; display: inline-block; }

    /* Methode Steps */
    .method-steps {
      display: flex;
      align-items: stretch;
      justify-content: space-between;
      gap: 20px;
      margin-top: 50px;
    }
    .step-card {
      flex: 1;
      background: #fff;
      border: 1px solid #eee;
      border-radius: var(--radius);
      padding: 30px 24px;
      position: relative;
      box-shadow: 0 4px 20px rgba(0,0,0,0.04);
      transition: transform 0.2s;
    }
    .step-card:hover { transform: translateY(-5px); border-color: var(--accent); }
    .step-num {
      font-size: 3.5rem;
      font-weight: 900;
      color: rgba(98, 210, 162, 0.15);
      position: absolute;
      top: 10px;
      right: 20px;
      line-height: 1;
    }
    .step-card h3 { margin-top: 10px; font-size: 1.25rem; color: #0b3d2e; }
    .step-arrow {
      display: flex;
      align-items: center;
      font-size: 1.5rem;
      color: var(--accent);
      font-weight: bold;
    }

    /* =========================================
       RESULT CARDS & PAIN GRID
       ========================================= */
    .grid2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      margin-top: 30px;
    }
    .card {
      background: #fff;
      border-radius: var(--radius);
      padding: 40px;
      box-shadow: var(--shadow);
      margin-bottom: 40px;
      border: 1px solid #eee;
    }
    .card.soft { background: none; box-shadow: none; border: 2px dashed #e5e7eb; padding: 30px; }
    .bullets { padding-left: 20px; color: var(--muted); }
    .bullets li { margin-bottom: 8px; }

    .result-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 16px;
      margin-top: 24px;
    }
    .result-card {
      background: #f9fafb;
      padding: 20px;
      border-radius: 12px;
      border: 1px solid #eee;
    }
    .result-card .badge {
      font-size: 0.75rem;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--accent);
      margin-bottom: 8px;
    }

    /* =========================================
       FAQ & FOOTER
       ========================================= */
    details {
      background: #fff;
      border: 1px solid #e5e7eb;
      border-radius: 12px;
      padding: 16px;
      margin-bottom: 12px;
    }
    summary { font-weight: 600; cursor: pointer; list-style: none; outline: none; }
    summary::-webkit-details-marker { display: none; }
    details[open] summary { margin-bottom: 12px; color: var(--accent); }

    .finalCta {
      background: linear-gradient(180deg, #eefbf6 0%, #fff 100%);
      border: 1px solid #d1fae5;
      border-radius: 24px;
      padding: 60px 40px;
      text-align: center;
      margin-top: 40px;
    }
    .finalCta h2 { margin-bottom: 16px; }
    .finalCta .cta-row { justify-content: center; margin-top: 24px; }

    /* =========================================
       RESPONSIVE
       ========================================= */
    @media (max-width: 900px) {
      .heroGrid { grid-template-columns: 1fr; gap: 40px; padding: 40px 0; }
      .sideCard { position: static; margin-top: 20px; }
      h1 { font-size: 2rem; }
      .grid2, .goal-grid { grid-template-columns: 1fr; }
      .heroActions { flex-direction: column; }
      .heroActions .btn { width: 100%; }
      
      .method-steps { flex-direction: column; gap: 30px; }
      .step-arrow { transform: rotate(90deg); justify-content: center; margin: -20px 0; }
    }

    /* Team Section Styles */
    .team-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      margin-top: 20px;
    }

    .team-member {
      background: #fff;
      border: 1px solid #eee;
      border-radius: 12px;
      padding: 24px;
      position: relative;
    }

    .team-member h3 {
      margin: 5px 0 2px 0;
      font-size: 1.2rem;
      color: #111;
    }
    
    .team-member .role {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 700;
      color: var(--accent);
      margin-bottom: 8px;
    }

    .team-member .sub-role {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--muted);
      margin-bottom: 12px;
    }

    .team-member p {
      font-size: 0.95rem;
      color: var(--primary);
      line-height: 1.5;
    }

    .tags {
      margin-top: 16px;
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .tags span {
      background: #f4f6f8;
      padding: 4px 10px;
      border-radius: 6px;
      font-size: 0.75rem;
      color: var(--muted);
      font-weight: 600;
    }

    @media (max-width: 700px) {
      .team-grid { grid-template-columns: 1fr; }
    }

    /* Tags für die Alltagssituationen */
    .tagRow {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 16px;
    }
    
    .tag {
      background: #eefbf6; /* Dein Mint-Hintergrund */
      color: #0b3d2e;      /* Dunkle Schrift */
      padding: 6px 12px;
      border-radius: 6px;
      font-size: 0.85rem;
      font-weight: 600;
      border: 1px solid rgba(98, 210, 162, 0.3);
    }