/* Reset & Grundlayout */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wdth,wght@75,600;87.5,600;100,600&display=swap');
:root {
  --accent-orange: #E9983E;
  --grey-font: #606060;
}
@font-face {
  font-family: 'Frank Wölfel';
  src: url('/fonts/myriadproregular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: #f8f8f8;
  color: #222;
  line-height: 1.6;
}

/* Container für max. Breite und zentrierte Inhalte */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
@media (max-width: 600px) {
  .container {
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 16px;
  }
}

/* Navigation */
nav {
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid rgba(233,152,62,0.1);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}
nav .brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #2a2a2a;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}
nav a {
  color: #222;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-orange);
  transition: width 0.3s ease;
}
nav a:hover {
  color: var(--accent-orange);
}
nav a:hover::after {
  width: 100%;
}
@media (max-width: 600px) {
  nav {
    min-height: 60px;
    height: 60px;
  }
  .nav-flex {
    height: 60px;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
  }
  nav .brand {
    font-size: 1.13rem;
    height: 60px;
    line-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
  }
  .burger-menu {
    display: flex;
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    background: none;
    z-index: 250;
    height: 28px;
    width: 32px;
    padding: 0;
  }
  .burger-menu span {
    width: 20px;
    height: 3px;
    margin: 0 0 4px 0;
    background: #222;
    border-radius: 2px;
    transition: all 0.27s cubic-bezier(.6,.13,.52,1.11);
    display: block;
  }
  .burger-menu span:last-child {
    margin-bottom: 0;
  }
}

/* Hero-Sektion */
.hero {
  position: relative;
  padding: clamp(1rem, 2vw, 1.5rem) 0 clamp(3rem, 6vw, 5rem);
  background: linear-gradient(145deg, #ffffff 0%, #f2f2f2 40%, #e8e8e8 100%);
  overflow: hidden;
  isolation: isolate;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.hero::before {
  width: clamp(400px, 60vw, 800px);
  height: clamp(400px, 60vw, 800px);
  top: -25%;
  left: -18%;
  background: radial-gradient(circle at center, rgba(233,152,62,0.35) 0%, rgba(233,152,62,0.12) 50%, rgba(233,152,62,0) 75%);
  filter: blur(70px);
  opacity: 0.85;
}
.hero::after {
  width: clamp(350px, 55vw, 700px);
  height: clamp(350px, 55vw, 700px);
  bottom: -25%;
  right: -18%;
  background: radial-gradient(circle at center, rgba(96,96,96,0.15) 0%, rgba(96,96,96,0.06) 50%, rgba(96,96,96,0) 75%);
  filter: blur(60px);
  opacity: 0.7;
}

/* ===== Neue Hero Section Styles ===== */
.hero-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: clamp(1rem, 2vh, 2rem);
}
.hero-title {
  font-family: 'Frank Wölfel', sans-serif;
  font-weight: 500;
  font-size: clamp(4.0rem, 9vw, 3.6rem);
  letter-spacing: 0.1em;
  color: #606060;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.25), 0 2px 4px rgba(0, 0, 0, 0.1);
  margin: 0;
  text-transform: uppercase;
  display: inline-block;
  line-height: 0.96;
  transform-origin: center;
}
.hero-title::after {
  content: '';
  display: block;
  width: clamp(46px, 9vw, 78px);
  height: 3px;
  background: var(--accent-orange);
  margin: clamp(0.6rem, 1.8vw, 1rem) auto 0;
  border-radius: 2px;
  opacity: 0.75;
}
.hero-subtitle {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-size: clamp(1.2rem, 2.7vw, 1.85rem);
  color: var(--grey-font);
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.02em;
  line-height: 1.4;
  width: 100%;
  white-space: nowrap;
  word-break: keep-all;
  display: grid;
  grid-template-columns: 1fr auto auto auto 1fr;
  align-items: center;
  justify-items: center;
}
.hero-subtitle-item {
  white-space: nowrap;
}

/* Grid-Layout für absolute Zentrierung des mittleren Elements */
.hero-subtitle > :nth-child(1) {
  justify-self: end;
  padding-right: clamp(0.5rem, 1.2vw, 0.8rem);
}

.hero-subtitle > :nth-child(2) {
  justify-self: center;
}

.hero-subtitle > :nth-child(3) {
  justify-self: center;
}

.hero-subtitle > :nth-child(4) {
  justify-self: center;
}

.hero-subtitle > :nth-child(5) {
  justify-self: start;
  padding-left: clamp(0.5rem, 1.2vw, 0.8rem);
}

/* Coaching Link Styling - Unterüberschrift wird interaktiv */
.hero-subtitle-link {
  position: relative;
  text-decoration: none;
  color: var(--accent-orange);
  transition: all 0.4s ease;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Unterline Effekt von links nach rechts */
.hero-subtitle-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 3px;
  background: linear-gradient(90deg, var(--grey-font) 0%, #808080 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(96, 96, 96, 0.3);
}

.hero-subtitle-link:hover::after {
  transform: scaleX(1);
}

.hero-subtitle-link:hover {
  color: var(--grey-font);
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
  text-shadow: 0 2px 12px rgba(96, 96, 96, 0.3), 0 4px 20px rgba(96, 96, 96, 0.15);
  transform: translateY(-2px);
}

/* NEU Badge direkt im Link */
.link-badge-new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  background: var(--accent-orange);
  color: #fff;
  font-weight: 700;
  font-size: 0.65em;
  letter-spacing: 0.08em;
  border-radius: 12px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(233, 152, 62, 0.5);
  animation: pulse 2s ease-in-out infinite;
  vertical-align: middle;
  position: relative;
  top: -2px;
}

.hero-subtitle-link:hover .link-badge-new {
  animation: none;
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(233, 152, 62, 0.7);
}

.hero-subtitle .hero-subtitle-separator {
  color: var(--accent-orange);
  font-weight: 300;
  margin: 0;
  opacity: 0.8;
  flex: 0 0 auto;
}
.hero-video {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: visible;
  isolation: isolate;
}
.hero-video-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: block;
}
.hero-video video {
  width: 100%;
  height: auto;
  display: block;
}
.hero-video-play-btn {
  position: absolute;
  top: 50%;
  left: calc(50% + 18px);
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 80px;
  height: 80px;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease, opacity 0.3s ease;
  z-index: 10;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
  opacity: 1;
  pointer-events: auto;
}
.hero-video-play-btn:hover {
  color: var(--accent-orange);
  transform: translate(-50%, -50%) scale(1.15);
  filter: drop-shadow(0 4px 12px rgba(233, 152, 62, 0.6));
}
.hero-video-play-btn:active {
  transform: translate(-50%, -50%) scale(1.05);
}
.hero-video-play-btn polygon {
  stroke: var(--accent-orange);
  stroke-width: 2;
  stroke-linejoin: round;
}
.hero-video-play-btn.hidden {
  display: none;
}
.hero-video::before {
  display: none;
}
.hero-video::after {
  display: none;
}
.hero-video video {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: none;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.05);
  background: #000;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  cursor: pointer;
}
.hero-video video::-webkit-media-controls {
  opacity: 0;
  pointer-events: none;
}
.hero-video video.playing::-webkit-media-controls {
  opacity: 1;
  pointer-events: auto;
}
.hero-video video:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.2), 0 0 0 1px rgba(0,0,0,0.05);
}
.hero-download-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}
.hero-audio {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.2rem, 2.8vw, 1.9rem);
  margin-top: clamp(1.8rem, 4vw, 2.8rem);
}
#hero-voice-audio {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.hero-voice-player {
  width: 100%;
  max-width: clamp(520px, 70vw, 780px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 1.8rem);
  padding: clamp(1.2rem, 3vw, 1.9rem);
  border-radius: clamp(18px, 3vw, 26px);
  background: linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(249,242,235,0.94) 55%, rgba(255,255,255,0.92) 100%);
  box-shadow: 0 28px 70px rgba(0,0,0,0.14), 0 12px 28px rgba(0,0,0,0.08);
  border: 1px solid rgba(233,152,62,0.18);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero-voice-player::before {
  content: '';
  position: absolute;
  inset: -45% 38% 42% -48%;
  background: radial-gradient(circle at 20% 32%, rgba(233,152,62,0.3) 0%, rgba(233,152,62,0) 55%);
  opacity: 0.75;
  pointer-events: none;
  transform: rotate(8deg);
}
.hero-voice-player > * {
  position: relative;
  z-index: 1;
}
.hero-voice-play {
  position: relative;
  width: clamp(62px, 11vw, 74px);
  height: clamp(62px, 11vw, 74px);
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--accent-orange) 0%, #f6a24b 100%);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 16px 38px rgba(233,152,62,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hero-voice-play::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 3px solid rgba(233,152,62,0.35);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.hero-voice-play:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(233,152,62,0.4);
}
.hero-voice-play:active {
  transform: translateY(1px);
}
.hero-voice-play:focus-visible {
  outline: 3px solid rgba(233,152,62,0.45);
  outline-offset: 4px;
}
.hero-voice-play.is-playing::after {
  opacity: 1;
  transform: scale(1);
  animation: heroVoiceGlow 1.9s ease-in-out infinite;
}
.hero-voice-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.25s ease;
}
.hero-voice-icon-play {
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 18px solid currentColor;
  margin-left: 3px;
  opacity: 1;
}
.hero-voice-icon-pause {
  transform: translate(-50%, -50%) scale(0.65);
  width: 18px;
  height: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
}
.hero-voice-icon-pause::before,
.hero-voice-icon-pause::after {
  content: '';
  width: 6px;
  height: 18px;
  border-radius: 999px;
  background: currentColor;
}
.hero-voice-play.is-playing .hero-voice-icon-play {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.75);
}
.hero-voice-play.is-playing .hero-voice-icon-pause {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.hero-voice-wave {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.1rem, 0.25vw, 0.2rem);
  width: 100%;
  height: clamp(48px, 11vw, 66px);
  padding: 0 clamp(0.3rem, 0.6vw, 0.5rem);
  border-radius: clamp(14px, 2.4vw, 18px);
  background: rgba(255,255,255,0.48);
  box-shadow: inset 0 0 0 1px rgba(233,152,62,0.18);
  overflow: hidden;
}
.hero-voice-bar {
  flex: 1 1 auto;
  min-width: clamp(2px, 0.4vw, 4px);
  max-width: clamp(4px, 0.8vw, 6px);
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(233,152,62,0.92) 0%, rgba(255,197,115,0.92) 100%);
  box-shadow: 0 4px 10px rgba(233,152,62,0.3);
  transform-origin: center bottom;
  transform: scaleY(var(--bar-scale, 0.45));
  animation: heroVoiceBars 1.8s ease-in-out infinite;
  animation-play-state: paused;
  opacity: 0.7;
}
.hero-voice-bar:nth-child(10n+1)  { --bar-scale: 0.28; animation-duration: 1.7s; animation-delay: 0.02s; }
.hero-voice-bar:nth-child(10n+2)  { --bar-scale: 0.62; animation-duration: 2.3s; animation-delay: 0.18s; }
.hero-voice-bar:nth-child(10n+3)  { --bar-scale: 0.45; animation-duration: 1.5s; animation-delay: 0.09s; }
.hero-voice-bar:nth-child(10n+4)  { --bar-scale: 0.71; animation-duration: 2.6s; animation-delay: 0.31s; }
.hero-voice-bar:nth-child(10n+5)  { --bar-scale: 0.35; animation-duration: 1.9s; animation-delay: 0.06s; }
.hero-voice-bar:nth-child(10n+6)  { --bar-scale: 0.58; animation-duration: 2.1s; animation-delay: 0.24s; }
.hero-voice-bar:nth-child(10n+7)  { --bar-scale: 0.39; animation-duration: 1.6s; animation-delay: 0.12s; }
.hero-voice-bar:nth-child(10n+8)  { --bar-scale: 0.68; animation-duration: 2.4s; animation-delay: 0.27s; }
.hero-voice-bar:nth-child(10n+9)  { --bar-scale: 0.42; animation-duration: 1.8s; animation-delay: 0.15s; }
.hero-voice-bar:nth-child(10n+10) { --bar-scale: 0.54; animation-duration: 2.2s; animation-delay: 0.21s; }
.hero-voice-bar:nth-child(7n+1)   { animation-duration: 1.75s; }
.hero-voice-bar:nth-child(7n+2)   { animation-duration: 2.35s; }
.hero-voice-bar:nth-child(7n+3)   { animation-duration: 1.55s; }
.hero-voice-bar:nth-child(7n+4)   { animation-duration: 2.65s; }
.hero-voice-bar:nth-child(7n+5)   { animation-duration: 1.95s; }
.hero-voice-bar:nth-child(7n+6)   { animation-duration: 2.15s; }
.hero-voice-bar:nth-child(7n+7)   { animation-duration: 1.85s; }
.hero-voice-wave.is-active .hero-voice-bar {
  animation-play-state: running;
}
.hero-voice-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.45rem;
  text-align: right;
}
.hero-voice-title {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(0.92rem, 1.8vw, 1.05rem);
  color: #4a4a4a;
}
.hero-voice-timer {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: 0.95rem;
  color: rgba(74,74,74,0.7);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-variant-numeric: tabular-nums;
}
.hero-voice-timer span[data-role] {
  min-width: 3.2ch;
  text-align: right;
}
@keyframes heroVoiceBars {
  0%, 100% {
    transform: scaleY(var(--bar-scale, 0.45));
    opacity: 0.7;
  }
  25% {
    transform: scaleY(calc(var(--bar-scale, 0.45) * 1.3));
    opacity: 0.85;
  }
  50% {
    transform: scaleY(0.82);
    opacity: 1;
  }
  75% {
    transform: scaleY(calc(var(--bar-scale, 0.45) * 0.9));
    opacity: 0.75;
  }
}
@keyframes heroVoiceGlow {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  55% {
    opacity: 0.15;
    transform: scale(1.12);
  }
}
.hero-download-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  background: var(--accent-orange);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(233,152,62,0.25);
}
.hero-download-link:hover,
.hero-download-link:focus {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(233,152,62,0.35);
  background: #d08535;
}
@media (max-width: 1000px) {
  .hero-video {
    max-width: 95vw;
    padding: 0;
  }
}

@media (max-width: 960px) {
  .hero-voice-player {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    row-gap: clamp(1rem, 3.5vw, 1.4rem);
  }
  .hero-audio {
    gap: clamp(1rem, 4vw, 1.5rem);
  }
  .hero-voice-meta {
    grid-column: 1 / -1;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: clamp(2rem, 10vw, 3rem) 0 clamp(2rem, 8vw, 2.5rem);
    min-height: 85vh;
  }
  .hero-flex {
    gap: clamp(1.5rem, 5vw, 2rem);
  }
  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3rem);
    transform: scaleY(1.18);
    letter-spacing: 0.06em;
    text-shadow: 0 14px 30px rgba(96,96,96,0.2);
    white-space: nowrap;
  }
  .hero-subtitle {
    white-space: normal;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .hero-subtitle > :nth-child(1),
  .hero-subtitle > :nth-child(2),
  .hero-subtitle > :nth-child(3),
  .hero-subtitle > :nth-child(4),
  .hero-subtitle > :nth-child(5) {
    justify-self: center;
    text-align: center;
    padding: 0;
  }

  .hero-subtitle-separator {
    display: none;
  }
  .hero-video {
    max-width: 92vw;
    border-radius: 0;
    padding: 0;
  }
  .hero-voice-player {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto;
    justify-items: start;
    text-align: left;
    gap: clamp(0.8rem, 3vw, 1rem);
    padding: clamp(0.8rem, 3vw, 1rem);
    max-width: calc(100vw - 24px);
    margin: 0 auto;
    box-sizing: border-box;
  }
  .hero-audio {
    width: 100%;
    max-width: 100vw;
    padding: 0 6px;
    box-sizing: border-box;
    margin-top: clamp(1.2rem, 4vw, 1.6rem);
  }
  .hero-voice-play {
    width: 48px;
    height: 48px;
    grid-row: 1 / 3;
  }
  .hero-voice-wave {
    width: 100%;
    height: 36px;
    padding: 0 0.4rem;
    gap: clamp(0.08rem, 0.15vw, 0.12rem);
  }
  .hero-voice-bar {
    min-width: 2px;
    max-width: 3px;
  }
  .hero-voice-meta {
    align-items: flex-start;
    text-align: left;
    gap: 0.2rem;
  }
  .hero-voice-title {
    font-size: clamp(0.75rem, 2.5vw, 0.85rem);
  }
  .hero-voice-timer {
    font-size: 0.8rem;
  }
  .hero-download-wrap {
    justify-content: center;
  }
  .hero-download-link {
    width: 100%;
    max-width: 240px;
  }
  .demo-grid {
    gap: 2px;
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 0;
  }
  .demo-card {
    padding: 2px 0;
    max-width: 100vw;
    margin-bottom: 0;
    box-shadow: none;
    border-radius: 0;
  }
  .demo-card video {
    margin-bottom: 0;
    border-radius: 0;
  }
  .demos-button-wrap {
    margin-top: 6px;
    margin-bottom: 6px;
  }
  .demos p {
    margin-bottom: 6px;
  }
}

/* Coaching Section */
.coaching {
  background: linear-gradient(145deg, #ffffff 0%, #f2f2f2 40%, #e8e8e8 100%);
  padding: 60px 0 50px 0;
  border-top: 1px solid rgba(233,152,62,0.15);
  border-bottom: 1px solid rgba(233,152,62,0.15);
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}
.coaching::before {
  content: '';
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233,152,62,0.25) 0%, rgba(233,152,62,0.1) 50%, transparent 75%);
  top: -200px;
  right: -150px;
  pointer-events: none;
  filter: blur(70px);
  opacity: 0.85;
}
.coaching::after {
  content: '';
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96,96,96,0.12) 0%, rgba(96,96,96,0.05) 50%, transparent 75%);
  bottom: -150px;
  left: -120px;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.7;
}
.coaching-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.coaching-text h2 {
  font-family: 'Frank Wölfel',  sans-serif;
  font-weight: 400;
  font-size: 2.5rem;
  color: var(--accent-orange);
  letter-spacing: 0.04em;
  margin-bottom: 0.3em;
  text-transform: uppercase;
  text-shadow: 0 4px 12px rgba(233, 152, 62, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1);
}
.coaching-text h2::after {
  content: '';
  display: block;
  width: 34px;
  height: 3px;
  background: var(--accent-orange);
  margin: 14px auto 0;
  border-radius: 2px;
}
.coaching-text p {
  font-size: 1.11rem;
  color: var(--grey-font);
  line-height: 1.7;
  margin-bottom: 0.7em;
}
.coaching-btn-wrap {
  margin-top: 12px;
}
@media (max-width: 600px) {
  .coaching {
    padding: 40px 0 35px 0;
  }
  .coaching-flex {
    max-width: 100%;
    padding: 0 16px;
  }
  .coaching-text {
    width: 100%;
    padding: 0 8px;
  }
  .coaching-text h2 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  .coaching-text p {
    font-size: clamp(0.95rem, 3vw, 1.11rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

/* Demos */
.demos {
  background: linear-gradient(145deg, #e8e8e8 0%, #f2f2f2 40%, #ffffff 100%);
  padding: 70px 0 50px 0;
  position: relative;
  overflow: hidden;
}
.demos::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233,152,62,0.3) 0%, rgba(233,152,62,0.12) 50%, transparent 75%);
  top: 50%;
  left: -250px;
  transform: translateY(-50%);
  pointer-events: none;
  filter: blur(70px);
  opacity: 0.85;
}
.demos::after {
  content: '';
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96,96,96,0.15) 0%, rgba(96,96,96,0.06) 50%, transparent 75%);
  top: 50%;
  right: -220px;
  transform: translateY(-50%);
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.7;
}
.demos h2,
.demos p {
  text-align: center;
  position: relative;
  z-index: 1;
}
.demos h2 {
  font-family: 'Frank Wölfel', sans-serif;
  font-weight: 400;
  font-size: 2.5rem;
  color: var(--accent-orange);
  letter-spacing: 0.04em;
  margin-bottom: 0.3em;
  text-transform: uppercase;
  text-shadow: 0 4px 12px rgba(233, 152, 62, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1);
}
.demos h2::after {
  content: '';
  display: block;
  width: 34px;
  height: 3px;
  background: var(--accent-orange);
  margin: 14px auto 0;
  border-radius: 2px;
}
.demos p {
  color: #555;
  margin-bottom: 1.8em;
}
.demo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  position: relative;
  z-index: 1;
}
.demo-card {
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  padding: 24px;
  flex: 1 1 280px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  /* Reveal-Animation Start */
  opacity: 0;
  transform: translateY(48px);
  will-change: opacity, transform;
  border: 1px solid rgba(233,152,62,0.1);
}
.demo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-orange) 0%, transparent 100%);
  border-radius: 12px 12px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.demo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(233,152,62,0.2);
  border-color: rgba(233,152,62,0.3);
}
.demo-card:hover::before {
  opacity: 1;
}
.demo-card.active {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s cubic-bezier(.51,.04,.43,1), transform 0.7s cubic-bezier(.51,.04,.43,1), box-shadow 0.3s ease;
}
.demo-card.active:hover {
  transform: translateY(-6px);
}
.demo-card video {
  width: 100%;
  max-width: 320px;
  border-radius: 10px;
  margin-bottom: 16px;
  background: #000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.demo-info {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.demo-info span {
  font-weight: 600;
  color: var(--accent-orange);
}
.demo-info a {
  font-size: 0.97em;
  color: #4a4a4a;
  text-decoration: none;
  margin-left: 1.5em;
  transition: color 0.2s ease;
}
.demo-info a:hover {
  text-decoration: underline;
  color: var(--accent-orange);
}

/* Studio */
.studio {
  background: linear-gradient(145deg, #ffffff 0%, #f2f2f2 40%, #e8e8e8 100%);
  padding: 70px 0 50px 0;
  position: relative;
  overflow: hidden;
}
.studio::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233,152,62,0.28) 0%, rgba(233,152,62,0.1) 50%, transparent 75%);
  bottom: -300px;
  right: -200px;
  pointer-events: none;
  filter: blur(70px);
  opacity: 0.85;
}
.studio::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96,96,96,0.14) 0%, rgba(96,96,96,0.05) 50%, transparent 75%);
  top: -150px;
  left: -150px;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.7;
}
.studio-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.studio-text {
  flex: 2 1 320px;
  background: rgba(255,255,255,0.6);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(233,152,62,0.15);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.studio-text h2 {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-weight: 400;
  font-size: 2.5rem;
  color: var(--accent-orange);
  letter-spacing: 0.04em;
  margin-bottom: 0.3em;
  text-transform: uppercase;
  text-shadow: none;
  text-align: center;
}
.studio-text ul {
  padding-left: 1.5em;
  margin-bottom: 0;
  color: #4e4e4e;
}
.studio-logos {
  flex: 1 1 200px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.studio-logos img {
  max-height: 46px;
  max-width: 110px;
  filter: grayscale(1) brightness(1.1);
  opacity: 0.8;
  transition: opacity 0.2s;
}
.studio-logos img:hover {
  opacity: 1;
  filter: none;
}

/* Kontakt */
.kontakt {
  background: linear-gradient(145deg, #e8e8e8 0%, #f2f2f2 40%, #ffffff 100%);
  padding: 70px 0 50px 0;
  position: relative;
  overflow: hidden;
}
.kontakt::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233,152,62,0.32) 0%, rgba(233,152,62,0.12) 50%, transparent 75%);
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  filter: blur(70px);
  opacity: 0.85;
}
.kontakt::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96,96,96,0.12) 0%, rgba(96,96,96,0.04) 50%, transparent 75%);
  bottom: -180px;
  right: -150px;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.7;
}
.kontakt-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.kontakt-info {
  flex: 2 1 260px;
  font-size: 1.03rem;
  color: #383838;
  background: rgba(255,255,255,0.7);
  padding: 30px;
  border-radius: 16px;
  border-left: 4px solid var(--accent-orange);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.kontakt-form {
  flex: 2 1 240px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 240px;
  background: rgba(255,255,255,0.7);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(233,152,62,0.15);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.kontakt-form label {
  font-weight: 500;
  color: #333;
  margin-bottom: 4px;
}
.kontakt-form input,
.kontakt-form textarea {
  width: 100%;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid rgba(233,152,62,0.2);
  font-size: 1em;
  background: #ffffff;
  resize: vertical;
  transition: all 0.3s ease;
}
.kontakt-form input:focus,
.kontakt-form textarea:focus {
  outline: none;
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(233,152,62,0.1);
}
.kontakt-form textarea {
  min-height: 60px;
  font-family: inherit;
}
.kontakt-form button {
  background: var(--accent-orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 0;
  font-size: 1.08em;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(233,152,62,0.3);
}
.kontakt-form button:hover {
  background: #d08535;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(233,152,62,0.4);
}
.kontakt-bild {
  flex: 1 1 180px;
  display: flex;
  align-items: flex-end;
  position: relative;
}
.kontakt-bild img {
  width: 100%;
  max-width: 200px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  margin-top: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 3px solid rgba(233,152,62,0.3);
}
.kontakt-bild img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(233,152,62,0.3);
  border-color: var(--accent-orange);
}

/* Footer */
footer {
  background: linear-gradient(to top, #f0f0f0, #f8f8f8);
  padding: 40px 0;
  font-size: 1em;
  border-top: 1px solid rgba(233,152,62,0.15);
}
.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
footer a {
  color: var(--accent-orange);
  text-decoration: none;
  transition: color 0.2s ease;
}
footer a:hover {
  text-decoration: underline;
  color: #c97c2f;
}
@media (max-width: 600px) {
  .footer-flex {
    flex-direction: column;
    gap: 10px;
  }
}

/* Sections werden nicht mehr animiert - nur Cards */
.demos-button-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.demos-btn {
  display: inline-block;
  padding: 12px 32px;
  font-size: 1.05em;
  border-radius: 50px;
  background: var(--accent-orange);
  color: #fff;
  box-shadow: 0 6px 20px rgba(233,152,62,0.25);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.demos-btn:hover {
  background: #d08535;
  color: #fff;
  box-shadow: 0 10px 30px rgba(233,152,62,0.35);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 900px) {
  .hero-flex, .studio-flex, .kontakt-flex, .demo-grid, .footer-flex {
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
  }
  .demo-card, .kontakt-bild {
    max-width: 100%;
  }
  .hero-video video {
    max-width: 100%;
  }
}

/* Coaching Hero-Section */
.coaching-hero {
  background: linear-gradient(145deg, #ffffff 0%, #f2f2f2 40%, #e8e8e8 100%);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(3rem, 6vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(233,152,62,0.15);
}
.coaching-hero::before {
  content: '';
  position: absolute;
  width: clamp(400px, 60vw, 800px);
  height: clamp(400px, 60vw, 800px);
  top: -25%;
  left: -18%;
  background: radial-gradient(circle at center, rgba(233,152,62,0.35) 0%, rgba(233,152,62,0.12) 50%, rgba(233,152,62,0) 75%);
  filter: blur(70px);
  opacity: 0.85;
  pointer-events: none;
  z-index: 0;
}
.coaching-hero::after {
  content: '';
  position: absolute;
  width: clamp(350px, 55vw, 700px);
  height: clamp(350px, 55vw, 700px);
  bottom: -25%;
  right: -18%;
  background: radial-gradient(circle at center, rgba(96,96,96,0.15) 0%, rgba(96,96,96,0.06) 50%, rgba(96,96,96,0) 75%);
  filter: blur(60px);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}
.coaching-hero .container {
  position: relative;
  z-index: 1;
}
.coaching-hero h1 {
  font-family: 'Frank Wölfel', sans-serif;
  font-weight: 600;
  font-size: clamp(2.8rem, 7vw, 3.6rem);
  letter-spacing: 0.08em;
  color: #606060;
  text-shadow: 0 10px 20px rgba(96,96,96,0.22);
  margin: 0 0 clamp(1rem, 3vw, 1.5rem) 0;
  text-transform: uppercase;
  display: inline-block;
  line-height: 1.1;
  transform: scaleY(1.2);
  transform-origin: center;
}
.coaching-hero h1::after {
  content: '';
  display: block;
  width: clamp(46px, 9vw, 78px);
  height: 3px;
  background: var(--accent-orange);
  margin: clamp(0.6rem, 1.8vw, 1rem) auto 0;
  border-radius: 2px;
  opacity: 0.75;
}
.coaching-hero p {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: #4a4a4a;
  font-weight: 500;
  margin-bottom: 1.4em;
  line-height: 1.7;
  max-width: min(750px, 90%);
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.9s 0.3s forwards;
  letter-spacing: 0.02em;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: none;
  }
}

/* Coaching Benefits Section */
.coaching-benefits {
  background: linear-gradient(145deg, #e8e8e8 0%, #f2f2f2 40%, #ffffff 100%);
  padding: clamp(3.5rem, 6vw, 5rem) 0 clamp(3rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.coaching-benefits::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233,152,62,0.3) 0%, rgba(233,152,62,0.12) 50%, transparent 75%);
  top: 50%;
  left: -250px;
  transform: translateY(-50%);
  pointer-events: none;
  filter: blur(70px);
  opacity: 0.85;
  z-index: 0;
}
.coaching-benefits::after {
  content: '';
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96,96,96,0.15) 0%, rgba(96,96,96,0.06) 50%, transparent 75%);
  top: 50%;
  right: -220px;
  transform: translateY(-50%);
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.7;
  z-index: 0;
}
.coaching-benefits .container {
  position: relative;
  z-index: 1;
}
.benefits-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
  margin: 0 auto;
  max-width: 920px;
  margin-bottom: 1.8em;
}
.benefit-card {
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  flex: 1 1 260px;
  max-width: 300px;
  min-width: 210px;
  padding: 28px 24px 20px 24px;
  text-align: left;
  opacity: 0;
  transform: translateY(44px) scale(0.97);
  transition: all 0.3s ease;
  will-change: opacity, transform;
  border: 1px solid rgba(233,152,62,0.1);
  position: relative;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-orange) 0%, transparent 100%);
  border-radius: 12px 12px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(233,152,62,0.2);
  border-color: rgba(233,152,62,0.3);
}
.benefit-card:hover::before {
  opacity: 1;
}
.benefit-card.active {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s, transform 0.7s, box-shadow 0.3s ease;
}
.benefit-card.active:hover {
  transform: translateY(-6px);
}
.benefit-card .icon {
  font-size: 2.1rem;
  margin-bottom: 16px;
  color: var(--accent-orange);
  display: block;
}
.benefit-card h3 {
  font-size: 1.17rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: var(--accent-orange);
  text-align: center;
}
.benefit-card p {
  font-size: 1.03rem;
  color: #444;
  margin: 0;
  line-height: 1.6;
  text-align: center;
}
.benefit-separator {
  color: var(--accent-orange);
}

/* Coaching Empfehlungen Section */
.coaching-empfehlungen {
  background: linear-gradient(145deg, #ffffff 0%, #f2f2f2 40%, #e8e8e8 100%);
  padding: clamp(3.5rem, 6vw, 5rem) 0 clamp(3rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(233,152,62,0.15);
}
.coaching-empfehlungen::before {
  content: '';
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233,152,62,0.25) 0%, rgba(233,152,62,0.1) 50%, transparent 75%);
  top: -200px;
  right: -150px;
  pointer-events: none;
  filter: blur(70px);
  opacity: 0.85;
  z-index: 0;
}
.coaching-empfehlungen::after {
  content: '';
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96,96,96,0.12) 0%, rgba(96,96,96,0.05) 50%, transparent 75%);
  bottom: -150px;
  left: -120px;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.7;
  z-index: 0;
}
.coaching-empfehlungen .container {
  position: relative;
  z-index: 1;
}
.coaching-empfehlungen h2 {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  margin-bottom: 0.9em;
  color: #606060;
  letter-spacing: 0.04em;
  text-shadow: 0 8px 20px rgba(96,96,96,0.15);
}
.empfehlungen-list {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  justify-content: center;
  margin-bottom: 1.6em;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}
.empfehlung-card {
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  padding: 22px 20px 16px 20px;
  min-width: 200px;
  max-width: 320px;
  text-align: left;
  opacity: 0;
  transform: translateY(38px) scale(0.98);
  transition: all 0.3s ease;
  will-change: opacity, transform;
  border: 1px solid rgba(233,152,62,0.1);
  position: relative;
}
.empfehlung-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-orange) 0%, transparent 100%);
  border-radius: 12px 12px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.empfehlung-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(233,152,62,0.2);
  border-color: rgba(233,152,62,0.3);
}
.empfehlung-card:hover::before {
  opacity: 1;
}
.empfehlung-card.active {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s, transform 0.7s, box-shadow 0.3s ease;
}
.empfehlung-card.active:hover {
  transform: translateY(-6px);
}
.empfehlung-card .empfehlung-kopf {
  font-size: 1.01em;
  font-weight: 700;
  color: var(--accent-orange);
  margin-bottom: 8px;
}
.empfehlung-card .empfehlung-text {
  font-size: 1em;
  color: #2a2a2a;
}
.back-btn {
  margin-top: 24px;
}

/* Responsive Coaching Bereich */
@media (max-width: 800px) {
  .benefits-list, .empfehlungen-list {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .benefit-card, .empfehlung-card {
    max-width: 98vw;
  }
  .coaching-hero h1 {
    font-size: clamp(1.5rem, 6vw, 3rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  .coaching-hero p {
    font-size: clamp(0.95rem, 3vw, 1.4rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .benefit-card h3 {
    font-size: clamp(1rem, 3.5vw, 1.17rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .benefit-card p {
    font-size: clamp(0.9rem, 2.8vw, 1.03rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .coaching-empfehlungen h2 {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .empfehlung-card .empfehlung-kopf,
  .empfehlung-card .empfehlung-text {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}


@media (max-width: 600px) {
  html, body {
    width: 100vw;
    overflow-x: hidden;
  }
  .demos {
    min-height: auto;
    padding: 40px 0 35px 0;
  }
  .demos h2 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .demos p {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

/* ========== Burger-Menü nur auf Mobile sichtbar ========== */
/* (Die globale .burger-menu-Regel wurde entfernt, siehe Mobile-Regel unten) */
@media (max-width: 600px) {
  nav ul {
    display: none !important;   /* Standard-Menü auf Mobile verstecken */
  }
  .burger-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    right: 14px;
    left: unset;
    transform: translateY(-50%);
    background: none;
    z-index: 250;
    height: 28px;
    width: 32px;
    padding: 0;
  }
  .burger-menu span {
    width: 20px;
    height: 3px;
    margin-bottom: 4px;
    background: #222;
    border-radius: 2px;
    transition: all 0.27s cubic-bezier(.6,.13,.52,1.11);
    display: block;
  }
  .burger-menu span:last-child {
    margin-bottom: 0;
  }
}

/* ========== Mobile Menü Overlay ========== */
.mobile-menu {
  display: none;
  position: fixed;
  z-index: 300;
  inset: 0;
  background: rgba(248,248,248,0.98);
  box-shadow: 0 8px 48px rgba(0,0,0,0.12);
  animation: slideInMenu 0.29s cubic-bezier(.38,.07,.47,.89);
  padding-top: 38px;
}
.mobile-menu.open {
  display: block;
}
@keyframes slideInMenu {
  from { opacity: 0; transform: translateY(-20px);}
  to   { opacity: 1; transform: none;}
}
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 60px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.mobile-menu ul li a {
  font-size: 1.21rem;
  color: #222;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.18s;
}
.mobile-menu ul li a:hover {
  color: var(--accent-orange);
}
.close-menu {
  position: absolute;
  top: 14px;
  right: 22px;
  background: none;
  border: none;
  font-size: 2.3rem;
  line-height: 1;
  color: #222;
  cursor: pointer;
  z-index: 301;
  padding: 0 8px;
}
@media (min-width: 601px) {
  .mobile-menu {
    display: none !important;
  }
  .burger-menu {
    display: none !important;
  }
}

/* Hero Video größer skalieren, aber innerhalb der Section bleiben */
.hero-video video {
  max-width: 800px;
  width: 100%;
  height: auto;
  margin-bottom: 0;
}
/* Download-Link in der Hero-Sektion */
/* Download-Link in der Hero-Sektion */
.hero-download-link {
  font-size: 1em;
  color: #19222c;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.18s;
}
.hero-download-link:hover {
  color: var(--accent-orange);
  text-decoration: underline;
}
.hero-download-wrap {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 10px;
}
@media (max-width: 600px) {
  .hero-download-link {
    font-size: 1em;
  }
}
@media (max-width: 900px) {
  .hero-video video {
    max-width: 98vw;
  }
}

/* Pulse Animation für NEU Badge */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 2px 8px rgba(233,152,62,0.5);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(233,152,62,0.7);
  }
}

/* Responsive Anpassungen für Subtitle Link */
@media (max-width: 600px) {
  .hero-subtitle-link {
    padding: 4px 8px;
    gap: 6px;
  }

  .link-badge-new {
    font-size: 0.6em;
    padding: 2px 6px;
  }

  .hero-subtitle-link::after {
    height: 2px;
    left: 12px;
    right: 12px;
  }
}
