/* =====================================================
   TRAINER-AUSBILDUNG — restyle additions
   Builds on restyle.css.
   Adds: waveform hero, audience chips, results scroller,
   scarcity-split, accordion FAQ.
===================================================== */

/* -------- Hero eyebrow pill (re-uses) -------- */
.rs-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.5rem 1rem; border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  font-family: var(--font-headline); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.06em; color: var(--rs-fg-soft);
  margin-bottom: 1.75rem;
}
.rs-pulse-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--rs-teal);
  box-shadow: 0 0 0 0 rgba(118,214,213,0.6);
  animation: rsPulse 2s ease-out infinite;
}
@keyframes rsPulse {
  0% { box-shadow: 0 0 0 0 rgba(118,214,213,0.6); }
  100% { box-shadow: 0 0 0 8px rgba(118,214,213,0); }
}

/* -------- HERO with studio waveform -------- */
.rs-hero--ausb {
  min-height: auto;
  padding: 8rem 0 5rem;
  display: block;
}
@media (max-width: 768px) { .rs-hero--ausb { padding: 6rem 0 3.5rem; } }

.rs-hero--ausb .rs-hero__inner {
  text-align: left;
  max-width: 1100px;
  padding: 0 2rem;
  margin: 0 auto;
}
@media (max-width: 640px) { .rs-hero--ausb .rs-hero__inner { padding: 0 1.25rem; } }

.rs-hero--ausb .rs-hero__title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  text-align: left;
  max-width: 28ch;
  margin-left: 0;
  text-wrap: balance;
}
.rs-hero--ausb .rs-hero__body {
  text-align: left;
  margin-left: 0;
  max-width: 38rem;
}
.rs-hero--ausb .rs-hero__cta {
  margin-bottom: 1rem;
}
.rs-hero--ausb .rs-hero__caption {
  text-align: left;
  margin: 0;
}

/* Studio waveform module — visualises "audio product" */
.rs-studio {
  position: relative;
  margin-top: 3rem;
  padding: 1.6rem 1.75rem 1.5rem;
  background: rgba(200, 180, 255, 0.05);
  border: 1px solid rgba(200, 180, 255, 0.14);
  border-radius: 18px;
  backdrop-filter: blur(var(--rs-glass-blur));
  -webkit-backdrop-filter: blur(var(--rs-glass-blur));
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
  max-width: 600px;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.6), 0 0 80px -30px rgba(118,214,213,0.25);
}
@media (max-width: 540px) {
  .rs-studio {
    grid-template-columns: auto 1fr;
    gap: 0.85rem 1rem;
    padding: 1.2rem 1.25rem;
  }
  .rs-studio__meta { grid-column: 1 / -1; text-align: left; }
}
.rs-studio__rec {
  width: 14px; height: 14px; border-radius: 50%;
  background: radial-gradient(circle, #ff5b6a 0%, #b83040 80%);
  box-shadow: 0 0 0 4px rgba(255,91,106,0.18), 0 0 18px rgba(255,91,106,0.45);
  animation: rsRec 1.6s ease-in-out infinite;
}
@keyframes rsRec {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(0.85); }
}
.rs-studio__waveform {
  display: flex; align-items: center;
  gap: 3px;
  height: 38px;
  overflow: hidden;
}
.rs-studio__waveform span {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--rs-teal), var(--rs-lavender));
  opacity: 0.7;
  animation: rsBar 1.4s ease-in-out infinite;
}
@keyframes rsBar {
  0%, 100% { transform: scaleY(0.25); }
  50%      { transform: scaleY(1); }
}
.rs-studio__meta {
  font-family: var(--rs-mono);
  font-size: 0.7rem;
  color: var(--rs-fg-mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: right;
  white-space: nowrap;
  line-height: 1.45;
}
.rs-studio__meta strong {
  display: block; color: #fff;
  font-family: var(--font-headline);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  margin-top: 0.15rem;
}

/* Hero photo override — wider gradient, behind a darker wash */
.rs-hero--ausb .rs-hero__photo img {
  filter: saturate(0.85) brightness(0.7);
}
.rs-hero--ausb .rs-hero__photo-fade-h {
  background: linear-gradient(to right, rgba(8,7,13,0.95) 0%, rgba(8,7,13,0.78) 45%, rgba(8,7,13,0.4) 75%, rgba(8,7,13,0.2) 100%);
}
@media (max-width: 900px) {
  .rs-hero--ausb .rs-hero__photo-fade-h {
    background: linear-gradient(to bottom, transparent 0%, rgba(8,7,13,0.55) 40%, rgba(8,7,13,0.95) 80%);
  }
}

/* -------- AUDIENCE / "FÜR WEN" -------- */
.rs-fuerwen-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
}
@media (min-width: 1024px) {
  .rs-fuerwen-grid { grid-template-columns: 5fr 7fr; gap: 5rem; align-items: start; }
}

.rs-chips {
  display: flex; flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
}
.rs-chip {
  display: inline-flex;
  font-family: var(--font-headline);
  font-size: 0.78rem; font-weight: 600;
  color: var(--rs-fg-soft);
  letter-spacing: -0.005em;
  padding: 0.45rem 0.95rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.rs-chip:hover {
  color: #fff;
  border-color: rgba(200,193,255,0.3);
  background: rgba(200,193,255,0.06);
}

.rs-fuerwen__body p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--rs-fg-soft);
  font-weight: 300;
  margin: 0 0 1.25rem;
  text-wrap: pretty;
}
.rs-fuerwen__body p:last-child { margin-bottom: 0; }
.rs-fuerwen__highlight {
  display: block;
  margin-top: 1.75rem;
  padding: 1.4rem 1.6rem;
  background: rgba(118,214,213,0.05);
  border-left: 2px solid var(--rs-teal);
  border-radius: 0 14px 14px 0;
  font-family: var(--font-headline) !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  letter-spacing: -0.02em !important;
  line-height: 1.35 !important;
}

/* -------- METHODE block (re-uses rs-mech__*) -------- */
.rs-mech__lead em {
  color: var(--rs-lavender); font-weight: 500;
}

/* Product card — "Was du am Ende erhältst" */
.rs-product-card {
  position: relative;
  padding: 2rem 2.25rem;
  background: rgba(118,214,213,0.04);
  border: 1px solid rgba(118,214,213,0.18);
  border-radius: 18px;
  backdrop-filter: blur(var(--rs-glass-blur));
  -webkit-backdrop-filter: blur(var(--rs-glass-blur));
  margin: 1.5rem 0 1rem;
  overflow: hidden;
}
.rs-product-card::after {
  content: '';
  position: absolute; top: 0; right: 0; width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(118,214,213,0.16) 0%, transparent 70%);
  filter: blur(40px); pointer-events: none;
}
.rs-product-card__title {
  font-family: var(--font-headline);
  font-size: 1.0625rem; font-weight: 700;
  color: #fff;
  margin: 0 0 1.25rem;
  display: flex; align-items: center; gap: 0.65rem;
  letter-spacing: -0.01em;
}
.rs-product-card__title::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--rs-teal);
  box-shadow: 0 0 12px rgba(118,214,213,0.6);
  flex-shrink: 0;
}
.rs-product-card ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.85rem;
}
.rs-product-card li {
  position: relative;
  padding-left: 1.85rem;
  font-size: 0.95rem; color: var(--rs-fg);
  line-height: 1.5; font-weight: 300;
}
.rs-product-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.15rem;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(118,214,213,0.12);
  border: 1px solid rgba(118,214,213,0.4);
}
.rs-product-card li::after {
  content: '';
  position: absolute;
  left: 5px; top: 7px;
  width: 8px; height: 4px;
  border-left: 1.5px solid var(--rs-teal);
  border-bottom: 1.5px solid var(--rs-teal);
  transform: rotate(-45deg);
}

/* -------- RESULTATE — horizontal scroller -------- */
.rs-results-wrap { position: relative; }
.rs-results-nav {
  display: none;
  position: absolute; top: -3.5rem; right: 0;
  gap: 0.5rem;
}
@media (min-width: 768px) { .rs-results-nav { display: flex; } }
.rs-results-nav button {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--rs-fg-soft);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, opacity 0.2s;
}
.rs-results-nav button:hover { color: #fff; border-color: rgba(200,193,255,0.35); background: rgba(200,193,255,0.06); }
.rs-results-nav button:disabled { opacity: 0.3; cursor: not-allowed; }

.rs-results-row {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem 0 1.25rem;
  margin: 0 -2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
.rs-results-row::-webkit-scrollbar { display: none; }
@media (max-width: 640px) {
  .rs-results-row { margin: 0 -1.25rem; padding-left: 1.25rem; padding-right: 1.25rem; }
}

.rs-result-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  padding: 1.75rem;
  background: var(--rs-glass-bg);
  border: 1px solid var(--rs-glass-border);
  border-radius: 22px;
  backdrop-filter: blur(var(--rs-glass-blur));
  -webkit-backdrop-filter: blur(var(--rs-glass-blur));
  display: flex; flex-direction: column; gap: 1.1rem;
  transition: border-color 0.4s ease, transform 0.4s ease;
}
@media (min-width: 768px) {
  .rs-result-card { flex: 0 0 360px; }
}
.rs-result-card:hover { border-color: rgba(200,193,255,0.3); transform: translateY(-3px); }

.rs-result-card__head {
  display: flex; align-items: center; gap: 0.85rem;
}
.rs-result-card__avatar {
  width: 48px; height: 48px; border-radius: 50%; object-fit: cover;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  flex-shrink: 0;
}
.rs-result-card__name {
  font-family: var(--font-headline);
  font-size: 1rem; font-weight: 700; color: #fff;
  letter-spacing: -0.01em;
  margin: 0;
}
.rs-result-card__role {
  font-size: 0.7rem; color: var(--rs-fg-mute);
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-top: 0.2rem; display: block;
}
.rs-result-card__text {
  font-size: 0.92rem; line-height: 1.6;
  color: var(--rs-fg-soft);
  font-weight: 300; margin: 0;
}
.rs-result-card__quote {
  font-size: 0.95rem; line-height: 1.55;
  color: #fff; font-weight: 400;
  font-style: italic;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.rs-result-card--endorsement {
  background: rgba(118,214,213,0.04);
  border-color: rgba(118,214,213,0.18);
}
.rs-result-card--video { padding: 0; overflow: hidden; }
.rs-result-card--video .rs-vid-embed {
  position: relative; aspect-ratio: 16/10; overflow: hidden;
  cursor: pointer;
}
.rs-result-card--video .rs-vid-embed img,
.rs-result-card--video .rs-vid-embed iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border: 0;
}
.rs-result-card--video .rs-vid-embed::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8,7,15,0.55) 100%);
  pointer-events: none;
}
.rs-result-card--video .rs-vid-embed:has(iframe)::after { display: none; }
.rs-result-card--video .rs-vid-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 56px; height: 56px; border-radius: 50%; border: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(230,224,255,0.9) 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(155,105,230,0.5), 0 0 60px -15px rgba(118,214,213,0.4);
  cursor: pointer;
  z-index: 2;
}
.rs-result-card--video .rs-vid-play svg { width: 20px; height: 20px; fill: #1a1233; margin-left: 3px; }
.rs-result-card--video .rs-result-card__inner {
  padding: 1.25rem 1.75rem 1.75rem;
  display: flex; flex-direction: column; gap: 0.85rem;
}

/* Scroll dots */
.rs-results-dots {
  display: flex; gap: 0.45rem; justify-content: center;
  margin-top: 1rem;
}
.rs-results-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
  transition: background 0.3s, width 0.3s;
}
.rs-results-dot.is-active {
  background: var(--rs-lavender);
  width: 18px; border-radius: 999px;
}
@media (min-width: 768px) { .rs-results-dots { display: none; } }

/* -------- SCARCITY + FINAL SPLIT -------- */
.rs-final-split {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 1024px) {
  .rs-final-split { grid-template-columns: 5fr 7fr; gap: 2rem; align-items: stretch; }
}

.rs-scarcity {
  padding: 2.5rem;
  background: var(--rs-glass-bg);
  border: 1px solid var(--rs-glass-border);
  border-radius: 24px;
  backdrop-filter: blur(var(--rs-glass-blur));
  -webkit-backdrop-filter: blur(var(--rs-glass-blur));
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.rs-scarcity__counter {
  font-family: var(--font-headline);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.05em;
  line-height: 1;
  margin: 1rem 0 0.4rem;
  display: flex; align-items: baseline; gap: 0.3rem;
}
.rs-scarcity__counter sub {
  font-size: 0.32em; font-weight: 600;
  color: var(--rs-fg-mute);
  letter-spacing: 0;
  position: static;
}
.rs-scarcity__lbl {
  font-family: var(--rs-mono);
  font-size: 0.7rem;
  color: var(--rs-fg-mute);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0 0 1.75rem;
}
.rs-scarcity__head {
  font-family: var(--font-headline);
  font-size: 1.5rem; font-weight: 700;
  color: #fff; letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0 0 1rem;
}
.rs-scarcity p {
  font-size: 0.95rem; line-height: 1.7;
  color: var(--rs-fg-soft);
  font-weight: 300;
  margin: 0 0 1rem;
}
.rs-scarcity p:last-child { margin-bottom: 0; }

.rs-final-cta {
  padding: 2.5rem;
  background: rgba(200,193,255,0.04);
  border: 1px solid rgba(200,193,255,0.2);
  border-radius: 24px;
  backdrop-filter: blur(var(--rs-glass-blur));
  -webkit-backdrop-filter: blur(var(--rs-glass-blur));
  position: relative; overflow: hidden;
  box-shadow: 0 0 80px -30px rgba(200,193,255,0.4);
  display: flex; flex-direction: column;
}
.rs-final-cta::before {
  content: ''; position: absolute; top: -30%; right: -20%;
  width: 60%; height: 100%;
  background: radial-gradient(circle, rgba(200,193,255,0.15) 0%, transparent 70%);
  filter: blur(40px); pointer-events: none;
}
.rs-final-cta__head {
  font-family: var(--font-headline);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #fff; letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 1rem 0 1.25rem;
  text-wrap: balance;
}
.rs-final-cta p {
  font-size: 0.95rem; line-height: 1.7;
  color: var(--rs-fg-soft);
  font-weight: 300;
  margin: 0 0 1rem;
}
.rs-final-cta__note {
  font-size: 0.85rem !important;
  color: var(--rs-fg-mute) !important;
  font-style: italic;
  border-left: 2px solid rgba(118,214,213,0.4);
  padding-left: 0.85rem;
  margin: 1rem 0 1.5rem !important;
}
.rs-final-cta__buttons {
  display: flex; flex-direction: column; gap: 0.75rem;
  margin-top: auto;
}
.rs-final-cta__buttons .rs-btn {
  white-space: normal;
  line-height: 1.3;
  text-align: center;
  padding: 0.95rem 1.25rem;
}

/* -------- FAQ accordion -------- */
.rs-faq-list {
  display: flex; flex-direction: column;
  gap: 0.75rem;
  max-width: 760px;
  margin: 0 auto;
}
.rs-faq {
  background: var(--rs-glass-bg);
  border: 1px solid var(--rs-glass-border);
  border-radius: 16px;
  backdrop-filter: blur(var(--rs-glass-blur));
  -webkit-backdrop-filter: blur(var(--rs-glass-blur));
  transition: border-color 0.3s ease;
  overflow: hidden;
}
.rs-faq[open] { border-color: rgba(200,193,255,0.25); }
.rs-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.4rem 1.5rem;
  font-family: var(--font-headline);
  font-size: 1.0625rem; font-weight: 700;
  color: #fff;
  letter-spacing: -0.015em;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.rs-faq summary::-webkit-details-marker { display: none; }
.rs-faq summary::after {
  content: '+';
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(200,193,255,0.2);
  color: var(--rs-lavender);
  font-size: 1.2rem; font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}
.rs-faq[open] summary::after {
  content: '−';
  background: rgba(200,193,255,0.08);
  transform: rotate(180deg);
}
.rs-faq__body {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--rs-fg-soft);
  font-weight: 300;
}
.rs-faq__body p { margin: 0 0 0.85rem; }
.rs-faq__body p:last-child { margin-bottom: 0; }
.rs-faq__body a {
  color: var(--rs-teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(118,214,213,0.3);
}
.rs-faq__body a:hover { color: #fff; border-color: rgba(255,255,255,0.4); }

.rs-faq-center {
  text-align: center;
  margin: 0 auto 3rem;
  max-width: 720px;
}
.rs-faq-center .rs-overline { justify-content: center; }
.rs-faq-center .rs-overline::before { display: none; }
.rs-faq-center .rs-overline::after {
  content: ''; width: 18px; height: 1px; background: currentColor; opacity: 0.6;
}

/* -------- Section header centered (re-uses) -------- */
.rs-section__header--center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}
.rs-section__header--center .rs-overline { justify-content: center; }
.rs-section__header--center .rs-overline::before { display: none; }
.rs-section__header--center .rs-overline::after {
  content: ''; width: 18px; height: 1px; background: currentColor; opacity: 0.6;
}
