/* =========================================================
   IDENTITÄT — Landingpage (Heldenreise)
   Ergänzt style.css + sales.css. Nur auf index.html geladen.
   Abschnitte: Maske · Unsichtbarer Rucksack · Wissenschaft ·
   Wendepunkt · Der Weg · Abschluss-CTA
   ========================================================= */

/* Ruhiger Zwischentitel-Kicker (Abschnittsauge, zentriert) */
.id-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin: 0 0 18px;
}
.id-kicker::before,
.sp-center .id-kicker::after {
  content: none;
  display: none;
}
.sp-center .id-kicker { justify-content: center; }

/* Zitierfähige Definition (GEO) */
.id-define {
  border-left: 2px solid var(--accent-dark);
  padding: 4px 0 4px 26px;
  margin: 0 0 26px;
}
.id-define dt {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: var(--ink);
  margin: 0 0 8px;
}
.id-define dd {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-muted);
}

/* =========================================================
   DIE MASKE — editorialer Kontrast (Zwei Zustände)
   ========================================================= */
.mask-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  margin-top: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-cream);
}
.mask-col { padding: 40px 42px; }
.mask-col--mask { background: var(--bg-deep); }
.mask-divider {
  width: 1px;
  background: var(--border);
}
.mask-label {
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin: 0 0 18px;
  display: block;
}
.mask-col h3 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.25;
  margin: 0 0 20px;
}
.mask-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.mask-list li {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text-muted);
  padding-left: 22px;
  position: relative;
}
.mask-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.mask-col--true .mask-list li::before {
  background: none;
  width: 12px; height: 12px;
  top: 6px;
  border-left: 1.5px solid var(--accent-dark);
  border-bottom: 1.5px solid var(--accent-dark);
  transform: rotate(-45deg);
  border-radius: 0;
}
@media (max-width: 760px) {
  .mask-split { grid-template-columns: 1fr; }
  .mask-divider { width: 100%; height: 1px; }
  .mask-col { padding: 32px 26px; }
}

/* =========================================================
   DER UNSICHTBARE RUCKSACK — Steine, die leichter werden
   ========================================================= */
.pack-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.pack-stone {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.sp-section.alt .pack-stone { background: var(--bg-panel); }
.pack-stone svg { width: 26px; height: 26px; color: var(--accent-dark); flex-shrink: 0; margin-top: 2px; }
.pack-stone h3 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 18px;
  margin: 0 0 6px;
}
.pack-stone p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--text-muted); }
@media (max-width: 700px) { .pack-grid { grid-template-columns: 1fr; } }

/* =========================================================
   WISSENSCHAFT — Säulen (E-E-A-T, seriös, ohne Fake-Zahlen)
   ========================================================= */
.sci-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.sci-card {
  padding: 30px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-cream);
}
.sp-section.alt .sci-card { background: var(--bg-panel); }
.sci-card .sci-term {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-dark);
  display: block;
  margin: 0 0 14px;
}
.sci-card h3 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 21px;
  line-height: 1.3;
  margin: 0 0 12px;
}
.sci-card p { margin: 0; font-size: 15px; line-height: 1.7; color: var(--text-muted); }
.sci-note {
  margin-top: 26px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  font-style: italic;
}
@media (max-width: 860px) { .sci-grid { grid-template-columns: 1fr; } }

/* =========================================================
   WENDEPUNKT — ruhige, große Aussage auf tiefem Grund
   ========================================================= */
.turn {
  background: var(--ink-fixed);
  color: #f0ede7;
  padding: var(--section-y) 48px;
  text-align: center;
}
.turn-inner { max-width: 780px; margin: 0 auto; }
.turn .id-kicker { color: var(--champagne); }
.turn .id-kicker::before,
.turn .id-kicker::after { background: var(--champagne); }
.turn h2 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.28;
  color: #f3f1ea;
  margin: 0 0 24px;
}
.turn h2 em { font-style: italic; color: var(--champagne); }
.turn p {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(240, 237, 231, 0.74);
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 600px) { .turn { padding: 84px 22px; } }

/* =========================================================
   DER WEG — vertikale Etappen (Prozess)
   ========================================================= */
.path {
  margin-top: 12px;
  display: grid;
  gap: 0;
}
.path-step {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 26px;
  padding: 26px 0;
  border-top: 1px solid var(--border);
}
.path-step:last-child { border-bottom: 1px solid var(--border); }
.path-num {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  line-height: 1;
  color: var(--accent-dark);
}
.path-step h3 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 8px;
}
.path-step p { margin: 0; font-size: 15.5px; line-height: 1.7; color: var(--text-muted); max-width: 60ch; }
@media (max-width: 600px) {
  .path-step { grid-template-columns: 56px 1fr; gap: 18px; padding: 22px 0; }
  .path-num { font-size: 30px; }
}

/* =========================================================
   ABSCHLUSS-CTA — ruhige, elegante Einladung (kein greller Banner)
   ========================================================= */
.close-cta {
  padding: var(--section-y) 48px;
  background: linear-gradient(170deg, var(--bg-panel) 0%, var(--bg-deep) 100%);
  text-align: center;
}
.close-inner { max-width: 680px; margin: 0 auto; }
.close-cta h2 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.14;
  margin: 0 0 20px;
}
.close-cta p {
  font-size: 17.5px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 34px;
}
/* Aussage direkt unter dem Bild. Bewusst eine Stufe kraeftiger als der
   Fliesstext darunter: sie steht fuer sich, nicht als Erklaerung zur
   Ueberschrift. Der groessere Abstand nach unten trennt sie vom
   zweiten Kicker, sonst lesen sich beide als ein Block. */
.close-cta .close-claim {
  font-family: "Playfair Display", serif;
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.55;
  color: var(--ink);
  max-width: 560px;
  margin: 0 auto 54px;
}
.close-cta .hero-cta { justify-content: center; margin-top: 0; }
@media (max-width: 600px) {
  .close-cta { padding: 80px 22px; }
  .close-cta .hero-cta { flex-direction: column; }
  .close-cta .hero-cta .btn { width: 100%; }
}
