/* ============================================================
     TOKENS — CELSOUL
     Hinweis: Alle Texte, Bilder und Links sind über klar markierte
     Stellen austauschbar (siehe Kommentare "BEARBEITEN:").
     ============================================================ */
  :root{
    --ivory:        #F5EFE9;   /* Haupt-Hintergrund, warmes Seidenweiß */
    --ivory-deep:    #EFE5DC;   /* leichte Abstufung für Karten */
    --plum:         #2B1B1F;   /* dunkler Hintergrund, warmes Espresso-Aubergine */
    --plum-soft:    #3A262B;   /* Kartenflächen auf dunklem Grund */
    --rose:         #B76E79;   /* Hauptakzent — Rosenholz */
    --rose-light:   #E4C6C0;   /* heller Akzent / Flächen */
    --gold:         #A9885A;  /* zweiter Akzent — warmes Bronze */
    --ink:          #241619;   /* Fließtext auf hellem Grund */
    --ink-soft:     rgba(36,22,25,0.62);
    --paper:        #F5EFE9;   /* Fließtext auf dunklem Grund */
    --paper-soft:   rgba(245,239,233,0.66);
    --line:         rgba(36,22,25,0.14);
    --line-dark:    rgba(245,239,233,0.16);

    --display:  "Fraunces", "Iowan Old Style", "Palatino Linotype", serif;
    --body:     "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    --container: 1180px;
    --pad: clamp(24px, 5vw, 72px);
    --section-pad: clamp(88px, 12vw, 160px);
  }

  *,*::before,*::after{ box-sizing: border-box; }
  html{ scroll-behavior: smooth; }
  @media (prefers-reduced-motion: reduce){
    html{ scroll-behavior: auto; }
    *,*::before,*::after{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  }

  body{
    margin:0;
    font-family: var(--body);
    background: var(--ivory);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
    font-size: 17px;
  }

  img{ max-width:100%; display:block; }
  a{ color:inherit; text-decoration:none; }
  button{ font-family:inherit; cursor:pointer; }

  .wrap{
    max-width: var(--container);
    margin: 0 auto;
    padding-left: var(--pad);
    padding-right: var(--pad);
  }

  .eyebrow{
    font-family: var(--body);
    font-size: 12px;
    letter-spacing: 0.19em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--rose);
    display:inline-flex;
    align-items:center;
    gap: 12px;
    margin: 0 0 20px;
  }
  .eyebrow::before{
    content:"";
    width: 30px; height:1px;
    background: currentColor;
    opacity: 0.6;
  }
  section .eyebrow.on-dark{ color: var(--rose-light); }

  /* dezente Filmkorn-Textur für hochwertige, editoriale Anmutung */
  body::before{
    content:"";
    position: fixed; inset:0; z-index: 3;
    pointer-events: none;
    opacity: 0.035;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  }

  h1,h2,h3{
    font-family: var(--display);
    font-weight: 500;
    letter-spacing: -0.01em;
    margin: 0;
  }
  em, .ital{ font-style: italic; font-weight: 400; color: var(--rose); }
  section .ital.on-dark{ color: var(--rose-light); }

  p{ margin: 0; }
  .lede{
    font-size: clamp(18px, 1.6vw, 21px);
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 46ch;
  }
  .on-dark .lede{ color: var(--paper-soft); }

  .btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding: 15px 30px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.01em;
    border: 1px solid transparent;
    transition: transform .35s cubic-bezier(.22,1,.36,1), background .35s ease, color .35s ease, border-color .35s ease;
  }
  .btn:hover{ transform: translateY(-2px); }
  .btn:focus-visible{ outline: 2px solid var(--rose); outline-offset: 3px; }

  .btn-primary{ background: var(--ink); color: var(--ivory); }
  .btn-primary:hover{ background: var(--rose); }
  .btn-ghost{ background: transparent; color: var(--ink); border-color: var(--line); }
  .btn-ghost:hover{ border-color: var(--ink); }
  .on-dark .btn-primary{ background: var(--rose-light); color: var(--plum); }
  .on-dark .btn-primary:hover{ background: var(--paper); }
  .on-dark .btn-ghost{ color: var(--paper); border-color: var(--line-dark); }
  .on-dark .btn-ghost:hover{ border-color: var(--paper); }

  /* ---------------- reveal on scroll ---------------- */
  .reveal{ opacity: 0; transform: translateY(22px); transition: opacity .9s cubic-bezier(.22,1,.36,1), transform .9s cubic-bezier(.22,1,.36,1); }
  .reveal.is-visible{ opacity: 1; transform: translateY(0); }

  /* ============================================================
     HEADER / NAV
     ============================================================ */
  .site-header{
    position: fixed; top:0; left:0; right:0; z-index: 100;
    padding: 22px 0;
    transition: background .4s ease, padding .4s ease, border-color .4s ease;
    border-bottom: 1px solid transparent;
  }
  .site-header.scrolled{
    background: rgba(245,239,233,0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 14px 0;
    border-color: var(--line);
  }
  .site-header .wrap{ display:flex; align-items:center; justify-content:space-between; }

  .logo{ font-family: var(--display); font-size: 21px; letter-spacing: 0.04em; font-weight: 600; }

  .nav-links{ display:flex; align-items:center; gap: 38px; list-style:none; margin:0; padding:0; }
  .nav-links a{ font-size: 14.5px; font-weight: 500; color: var(--ink-soft); position:relative; }
  .nav-links a::after{
    content:""; position:absolute; left:0; right:0; bottom:-5px; height:1px; background: var(--rose);
    transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
  }
  .nav-links a:hover{ color: var(--ink); }
  .nav-links a:hover::after{ transform: scaleX(1); }

  .nav-cta{ display:flex; align-items:center; gap:22px; }
  .nav-cta .btn{ padding: 11px 22px; font-size: 13.5px; }

  .nav-toggle{ display:none; background:none; border:none; width: 34px; height: 24px; position:relative; }
  .nav-toggle span{ position:absolute; left:0; right:0; height:1.5px; background: var(--ink); transition: transform .3s ease, opacity .3s ease; }
  .nav-toggle span:nth-child(1){ top:0; }
  .nav-toggle span:nth-child(2){ top:11px; }
  .nav-toggle span:nth-child(3){ top:22px; }
  .nav-toggle.open span:nth-child(1){ transform: translateY(11px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2){ opacity:0; }
  .nav-toggle.open span:nth-child(3){ transform: translateY(-11px) rotate(-45deg); }

  @media (max-width: 880px){
    .nav-links{
      position: fixed; inset: 0; top: 0;
      background: var(--ivory);
      flex-direction: column; justify-content:center; gap: 30px;
      transform: translateX(100%); transition: transform .45s cubic-bezier(.22,1,.36,1);
    }
    .nav-links.open{ transform: translateX(0); }
    .nav-links a{ font-size: 24px; font-family: var(--display); }
    .nav-cta .btn-ghost{ display:none; }
    .nav-toggle{ display:block; }
  }

  .skip-link{
    position:absolute; left:-9999px; top:auto;
    background: var(--ink); color:var(--ivory); padding: 12px 20px; border-radius: 8px; z-index: 999;
  }
  .skip-link:focus{ left: 20px; top: 20px; }

  /* ============================================================
     HERO
     ============================================================ */
  .hero{
    position: relative;
    min-height: 100vh;
    display:flex; align-items:center;
    padding-top: 120px; padding-bottom: 80px;
    overflow: hidden;
  }
  .hero-blob{
    position:absolute;
    width: min(680px, 88vw); height: min(680px, 88vw);
    right: -14%; top: 48%; transform: translateY(-50%);
    background: radial-gradient(circle at 32% 28%, var(--rose-light) 0%, var(--rose) 52%, transparent 76%);
    filter: blur(20px);
    opacity: 0.6;
    border-radius: 62% 38% 55% 45% / 45% 55% 45% 55%;
    animation: breathe 11s ease-in-out infinite;
    z-index:0;
  }
  .hero-blob::after{
    /* zweite, kleinere Schicht für mehr Tiefe */
    content:"";
    position:absolute; inset: 14%;
    background: radial-gradient(circle at 60% 65%, var(--gold) 0%, transparent 70%);
    opacity: 0.5;
    border-radius: inherit;
  }
  @keyframes breathe{
    0%,100%{ transform: translateY(-50%) scale(1); border-radius: 62% 38% 55% 45% / 45% 55% 45% 55%; }
    50%{ transform: translateY(-50%) scale(1.06); border-radius: 45% 55% 40% 60% / 55% 45% 60% 40%; }
  }

  .hero-orbit{
    position:absolute;
    width: min(560px, 68vw); height: min(560px, 68vw);
    right: 2%; top: 50%;
    transform: translateY(-50%);
    border: 1px solid rgba(169,136,90,0.4);
    border-radius: 50%;
    z-index:0;
    animation: orbit-spin 70s linear infinite;
  }
  .hero-orbit::before{
    content:""; position:absolute; top:-4px; left: 50%; width:8px; height:8px; margin-left:-4px;
    border-radius: 50%; background: var(--gold);
  }
  @keyframes orbit-spin{ to{ transform: translateY(-50%) rotate(360deg); } }

  .hero-line{
    position:absolute; top:0; bottom:0; left: 56%;
    width:1px;
    background: linear-gradient(to bottom, transparent, var(--line) 18%, var(--line) 82%, transparent);
    z-index:0;
  }
  @media (max-width: 980px){ .hero-line{ display:none; } }

  .hero-ghost{
    position:absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%) rotate(-3deg);
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(140px, 22vw, 340px);
    letter-spacing: 0.02em;
    color: var(--ink);
    opacity: 0.035;
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
  }
  @media (max-width: 980px){ .hero-ghost{ display:none; } }

  .hero-inner{ position:relative; z-index:1; max-width: 700px; }
  .hero-inner .eyebrow{ margin-bottom: 26px; }
  .hero-inner h1{
    font-size: clamp(42px, 7vw, 94px);
    line-height: 1.02;
    letter-spacing: -0.025em;
    margin-bottom: 32px;
  }
  .hero-inner .lede{ margin-bottom: 44px; max-width: 46ch; }
  .hero-cta{ display:flex; flex-wrap:wrap; gap: 16px; }

  /* ============================================================
     GENERIC SECTION
     ============================================================ */
  .section{ padding: var(--section-pad) 0; position: relative; }
  .section.on-dark{ background: var(--plum); color: var(--paper); }
  .section.tint{ background: var(--ivory-deep); }

  /* ---- Problem ---- */
  .problem .wrap{ max-width: 880px; }
  .problem h2{
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.28;
    font-weight: 400;
  }
  .problem h2 em{ display:block; }
  .problem .footnote{ margin-top: 30px; font-size: 15.5px; color: var(--ink-soft); max-width: 56ch; }
  .problem .problem-highlight{
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--line);
    font-family: var(--display);
    font-style: italic;
    font-size: clamp(19px, 2.2vw, 24px);
    line-height: 1.45;
    color: var(--rose);
    max-width: 52ch;
  }

  /* ---- Ansatz ---- */
  .ansatz .head{ max-width: 620px; margin-bottom: 72px; }
  .ansatz h2{ font-size: clamp(30px, 4.2vw, 46px); color: var(--paper); margin-bottom: 20px; }

  .steps{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
  }
  .steps::before{
    content:"";
    position:absolute; top: 27px; left: 8%; right: 8%; height: 1px;
    background: var(--line-dark);
  }
  .step{ position:relative; padding-right: 32px; }
  .step .num{
    width: 54px; height: 54px; border-radius: 50%;
    background: var(--plum-soft);
    border: 1px solid var(--line-dark);
    display:flex; align-items:center; justify-content:center;
    font-family: var(--display); font-style: italic; color: var(--rose-light); font-size: 19px;
    margin-bottom: 28px;
    position: relative; z-index:1;
  }
  .step h3{ font-size: 21px; color: var(--paper); margin-bottom: 12px; font-weight: 500; }
  .step p{ color: var(--paper-soft); font-size: 15.5px; line-height: 1.6; }

  @media (max-width: 780px){
    .steps{ grid-template-columns: 1fr; gap: 44px; }
    .steps::before{ display:none; }
  }

  /* ---- Angebote ---- */
  .angebote-head{ display:flex; justify-content:space-between; align-items:flex-end; gap: 32px; margin-bottom: 64px; flex-wrap: wrap; }
  .angebote-head h2{ font-size: clamp(30px, 4.2vw, 46px); max-width: 520px; }

  .offer-grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
  }
  .offer-card{
    background: var(--ivory);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 40px 32px;
    display:flex; flex-direction:column;
    position: relative;
    overflow: hidden;
    transition: transform .45s cubic-bezier(.22,1,.36,1), box-shadow .45s ease, border-color .45s ease;
  }
  .offer-card::before{
    content:"";
    position:absolute; top:0; left:0; right:0; height: 3px;
    background: linear-gradient(90deg, var(--rose), var(--gold));
    transform: scaleX(0); transform-origin: left;
    transition: transform .5s cubic-bezier(.22,1,.36,1);
  }
  .offer-card:hover::before{ transform: scaleX(1); }

  .offer-card.is-signature{
    background: linear-gradient(155deg, #8C6C43 0%, #A9885A 45%, #B76E79 100%);
    border: none;
    color: var(--paper);
    box-shadow: 0 26px 56px -28px rgba(169,136,90,0.5);
  }
  .offer-card.is-signature::before{
    transform: scaleX(1);
    background: linear-gradient(90deg, var(--ivory), var(--paper));
    opacity: 0.5;
  }
  .offer-card.is-signature .tag{
    background: rgba(245,239,233,0.18);
    color: var(--paper);
  }
  .offer-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -20px rgba(43,27,31,0.18);
    border-color: rgba(183,110,121,0.4);
  }
  .offer-card.is-deep{ background: #3D2830; color: var(--paper); border-color: #3D2830; }
  .offer-card .tag{
    align-self:flex-start;
    font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
    padding: 6px 12px; border-radius: 100px;
    background: var(--rose-light); color: var(--plum);
    margin-bottom: 24px;
  }
  .offer-card.is-deep .tag{ background: rgba(245,239,233,0.14); color: var(--rose-light); }
  .offer-card h3{ font-size: 25px; margin-bottom: 8px; }
  .offer-card .price{ font-family: var(--body); font-weight: 600; font-size: 15px; color: var(--rose); margin-bottom: 6px; }
  .offer-card.is-deep .price, .offer-card.is-signature .price{ color: var(--paper); }
  .offer-card .offer-audience{
    font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600;
    color: var(--ink-soft); margin-bottom: 20px;
  }
  .offer-card.is-deep .offer-audience, .offer-card.is-signature .offer-audience{ color: var(--paper-soft); }
  .offer-card .desc{ font-size: 15px; line-height: 1.65; color: var(--ink-soft); margin-bottom: 24px; flex-grow: 1; }
  .offer-card.is-deep .desc, .offer-card.is-signature .desc{ color: var(--paper-soft); }
  .offer-card .includes{ list-style:none; margin: 0 0 28px; padding:0; display:flex; flex-direction:column; gap: 10px; }
  .offer-card .includes li{ font-size: 14px; color: var(--ink-soft); padding-left: 18px; position:relative; }
  .offer-card.is-deep .includes li, .offer-card.is-signature .includes li{ color: var(--paper-soft); }
  .offer-card .includes li::before{
    content:""; position:absolute; left:0; top: 8px; width:6px; height:6px; border-radius:50%; background: var(--rose);
  }
  .offer-card.is-deep .includes li::before, .offer-card.is-signature .includes li::before{ background: var(--rose-light); }
  .offer-card .btn{ width: 100%; justify-content:center; }
  .offer-card.is-signature .btn-primary{ background: var(--ivory); color: var(--plum); }
  .offer-card.is-signature .btn-primary:hover{ background: var(--paper); }

  .offer-note{
    margin-top: 32px;
    font-size: 14px;
    color: var(--ink-soft);
    font-style: italic;
  }

  @media (max-width: 980px){
    .offer-grid{ grid-template-columns: 1fr; }
  }

  /* ---- Über Celine ---- */
  .about{ display:grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 6vw, 90px); align-items:center; }
  .about-media{
    aspect-ratio: 4/5;
    border-radius: 26px;
    background:
      radial-gradient(circle at 30% 20%, var(--rose-light), transparent 60%),
      linear-gradient(155deg, var(--ivory-deep), var(--rose-light) 120%);
    border: 1px dashed rgba(183,110,121,0.55);
    display:flex; align-items:center; justify-content:center;
    text-align:center; padding: 24px;
  }
  .about-media span{ font-size: 13px; color: var(--ink-soft); letter-spacing: 0.04em; }
  .about h2{ font-size: clamp(28px, 4vw, 42px); margin-bottom: 26px; }
  .about .body-copy p{ margin-bottom: 20px; font-size: 16.5px; line-height: 1.72; color: var(--ink-soft); }
  .about .body-copy p:last-child{ margin-bottom: 0; }
  .about .signature{ margin-top: 30px; font-family: var(--display); font-style: italic; font-size: 22px; color: var(--rose); }

  @media (max-width: 880px){
    .about{ grid-template-columns: 1fr; }
    .about-media{ aspect-ratio: 16/10; }
  }

  /* ---- Podcast / YouTube ---- */
  .listen .wrap > .head{ max-width: 560px; margin-bottom: 56px; }
  .listen h2{ font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; }
  .listen-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .listen-card{
    border-radius: 22px;
    padding: 36px;
    background: var(--ivory);
    border: 1px solid var(--line);
    display:flex; flex-direction:column; gap: 18px;
    transition: transform .4s cubic-bezier(.22,1,.36,1), border-color .4s ease;
  }
  .listen-card:hover{ transform: translateY(-6px); border-color: rgba(183,110,121,0.4); }
  .listen-card .icon{
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--rose-light); display:flex; align-items:center; justify-content:center;
    font-family: var(--display); font-style:italic; color: var(--plum); font-size: 16px;
  }
  .listen-card.is-youtube .icon{
    border-radius: 12px;
    background: var(--plum);
    color: var(--rose-light);
  }
  .listen-card .platform{
    font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
    color: var(--rose);
  }
  .listen-card.is-youtube .platform{ color: var(--plum); }
  .listen-card h3{ font-size: 19px; font-weight: 500; line-height: 1.35; }
  .listen-card p{ font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }
  .listen-card a.btn{ align-self:flex-start; margin-top: auto; }

  @media (max-width: 700px){ .listen-grid{ grid-template-columns: 1fr; } }

  /* ---- Finaler CTA ---- */
  .final-cta{ text-align:center; }
  .final-cta .wrap{ max-width: 720px; }
  .final-cta h2{ font-size: clamp(32px, 5.4vw, 58px); color: var(--paper); line-height: 1.14; margin-bottom: 24px; }
  .final-cta .lede{ margin: 0 auto 40px; }
  .final-cta .hero-cta{ justify-content:center; }

  /* ============================================================
     FOOTER
     ============================================================ */
  .site-footer{
    background: var(--plum); color: var(--paper-soft);
    padding: 64px 0 32px;
  }
  .footer-top{
    display:flex; justify-content:space-between; align-items:flex-start; gap: 40px; flex-wrap:wrap;
    padding-bottom: 40px; border-bottom: 1px solid var(--line-dark); margin-bottom: 28px;
  }
  .footer-logo{ font-family: var(--display); font-size: 26px; color: var(--paper); }
  .footer-links{ display:flex; gap: 36px; flex-wrap:wrap; list-style:none; margin:0; padding:0; }
  .footer-links a{ font-size: 14px; color: var(--paper-soft); }
  .footer-links a:hover{ color: var(--paper); }
  .footer-bottom{ display:flex; justify-content:space-between; flex-wrap:wrap; gap: 12px; font-size: 12.5px; color: rgba(245,239,233,0.45); }

/* ============================================================
   LANDINGPAGE-KOMPONENTEN (Return to You / Verkörpert)
   Nutzt dieselben Tokens/Farben wie die Homepage.
   ============================================================ */

.breadcrumb{
  padding: 104px 0 0;
}
.breadcrumb a{
  font-size: 13.5px; color: var(--ink-soft); display:inline-flex; align-items:center; gap:8px;
}
.breadcrumb a:hover{ color: var(--ink); }
.on-dark .breadcrumb a{ color: var(--paper-soft); }

/* ---- Produkt-Hero ---- */
.product-hero{ padding-top: 56px; padding-bottom: var(--section-pad); }
.product-hero .wrap{ max-width: 760px; }
.product-hero h1{
  font-size: clamp(36px, 5.6vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.product-hero .lede{ max-width: 52ch; margin-bottom: 36px; }
.product-meta{ display:flex; align-items:center; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; }
.product-price{ font-family: var(--display); font-size: 22px; color: var(--rose); }
.product-audience{
  font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700;
  color: var(--ink-soft); padding: 6px 12px; border: 1px solid var(--line); border-radius: 100px;
}

/* ---- Pain-Liste ("Kennst du das?") ---- */
.pain-list{ list-style:none; margin: 32px 0 0; padding:0; display:flex; flex-direction:column; gap: 16px; max-width: 62ch; }
.pain-list li{
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.5;
  color: var(--ink);
  padding-left: 30px;
  position: relative;
}
.on-dark .pain-list li{ color: var(--paper); }
.pain-list li::before{
  content:"—"; position:absolute; left:0; top:0; color: var(--rose);
}
.on-dark .pain-list li::before{ color: var(--rose-light); }

/* ---- Hervorgehobene Aussage (wiederverwendet problem-highlight-Optik) ---- */
.highlight-line{
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.45;
  color: var(--rose);
  max-width: 54ch;
  margin: 40px 0;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.on-dark .highlight-line{ color: var(--rose-light); border-top-color: var(--line-dark); }

/* ---- Wertliste (was enthalten ist) ---- */
.value-list{ list-style:none; margin: 0; padding:0; display:grid; grid-template-columns: repeat(2, 1fr); gap: 14px 32px; max-width: 640px; }
.value-list li{ font-size: 15px; color: var(--ink-soft); padding-left: 22px; position:relative; }
.on-dark .value-list li{ color: var(--paper-soft); }
.value-list li::before{
  content:""; position:absolute; left:0; top: 7px; width:7px; height:7px; border-radius:50%; background: var(--rose);
}
.on-dark .value-list li::before{ background: var(--rose-light); }
@media (max-width: 600px){ .value-list{ grid-template-columns: 1fr; } }

/* ---- Session-/Prozess-Schritte ---- */
.session-list{ display:flex; flex-direction:column; gap: 0; margin-top: 8px; }
.session-item{
  display:grid; grid-template-columns: 64px 1fr; gap: 24px;
  padding: 28px 0; border-bottom: 1px solid var(--line);
}
.session-item:last-child{ border-bottom: none; }
.session-item .num{
  font-family: var(--display); font-style: italic; font-size: 26px; color: var(--rose);
}
.session-item h3{ font-size: 19px; margin-bottom: 8px; font-weight: 500; }
.session-item p{ font-size: 15px; line-height: 1.65; color: var(--ink-soft); max-width: 58ch; }

/* ---- Für-wen-Liste ---- */
.persona-list{ list-style:none; margin: 24px 0 0; padding:0; display:flex; flex-direction:column; gap: 14px; max-width: 62ch; }
.persona-list li{ font-size: 16px; line-height: 1.55; color: var(--ink-soft); padding-left: 24px; position:relative; }
.persona-list li::before{
  content:""; position:absolute; left:0; top: 9px; width:6px; height:6px; border-radius:50%; background: var(--rose);
}

/* ---- Testimonials ---- */
.testimonial-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card{
  background: var(--ivory); border: 1px solid var(--line); border-radius: 20px; padding: 32px;
  font-size: 15px; line-height: 1.7; color: var(--ink-soft);
}
.testimonial-card::before{
  content: "\201E"; font-family: var(--display); font-size: 40px; color: var(--rose); display:block; margin-bottom: 8px; line-height:1;
}
@media (max-width: 880px){ .testimonial-grid{ grid-template-columns: 1fr; } }

/* ---- Gründerinnen-Absatz ---- */
.founder-block{ max-width: 640px; }
.founder-block p{ margin-bottom: 18px; font-size: 16.5px; line-height: 1.72; color: var(--ink-soft); }
.founder-block p:last-child{ margin-bottom: 0; }

/* ---- Finaler Produkt-CTA ---- */
.product-final{ text-align:center; }
.product-final .wrap{ max-width: 640px; }
.product-final .product-price{ font-size: 34px; justify-content:center; display:flex; margin-bottom: 8px; }
.product-final .value-list{ margin: 0 auto 40px; justify-content:center; text-align:left; }

/* ============================================================
   [RESERVIERT FÜR SPÄTER] — VIDEO-SEKTION
   Aktuell inaktiv (auskommentiert). Kein Video, keine Assets,
   keine Abhängigkeiten werden dadurch geladen.
   Sobald ein persönliches Video bereitsteht: Kommentar unten
   entfernen und die Section (siehe Kommentar in index.html)
   an gewünschter Stelle einfügen. Fügt sich nahtlos in die
   bestehenden Design-Tokens (Farben, Radius, Abstände) ein.
   ============================================================ */
/*
.video-section .wrap{ max-width: 880px; }
.video-frame{
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 22px;
  overflow: hidden;
  margin-top: 36px;
  background: var(--ivory-deep);
  border: 1px solid var(--line);
}
.video-frame video,
.video-frame iframe{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  display: block;
}
*/
