/*
  · the athletic code · lorenza wand · 2026 ·
  wenn du das liest: hallo auch von hier.
*/


/* · fonts ──────────────────────────────── selbst gehostet · */

@font-face {
  font-family: 'Montserrat';
  src: url('../assets/fonts/montserrat-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../assets/fonts/montserrat-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../assets/fonts/montserrat-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


/* · variablen ──────────────────────────── design-system · */

:root {
  --bg:      #0B021F;
  --text:    #E6E6E6;
  --heading: #F2F2F2;
  --link:    #E6E6E6;
  --gold:    #D4AF37;

  --font: 'Montserrat', sans-serif;

  --border: rgba(242, 242, 242, 0.1);
  --border-hover: rgba(242, 242, 242, 0.3);

  --space-xs: 0.5rem;
  --space-s:  1rem;
  --space-m:  2rem;
  --space-l:  4rem;
  --space-xl: 8rem;

  --nav-height: 100px;
  --container:  1140px;
}


/* · reset ──────────────────────────────── basis · */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* · cursor ─────────────────────────────── quadrat folgt der maus · */

@media (pointer: fine) {
  * { cursor: none !important; }

  .cursor {
    width: 22px;
    height: 22px;
    border: 1px solid rgba(242, 242, 242, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, border-radius 0.2s ease;
    will-change: left, top;
  }

  .cursor.is-hovering {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border-color: var(--gold);
    background-color: rgba(212, 175, 55, 0.08);
  }
}

/* · light theme ────────────────────────── therapie-seiten · */

body.theme--light {
  --bg:           #FFFFFF;
  --text:         #3A3A3A;
  --heading:      #0B021F;
  --link:         #3A3A3A;
  --border:       rgba(11, 2, 31, 0.1);
  --border-hover: rgba(11, 2, 31, 0.25);
}

@media (pointer: fine) {
  body.theme--light .cursor {
    border-color: rgba(11, 2, 31, 0.5);
  }

  body.theme--light .cursor.is-hovering {
    border-color: var(--gold);
    background-color: rgba(212, 175, 55, 0.08);
  }
}


html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--link);
  text-decoration: none;
}

ul, ol {
  list-style: none;
}


/* · layout ─────────────────────────────── container + sections · */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-m);
}

.section {
  padding-block: var(--space-xl);
}

.section__hook {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text);
  opacity: 0.5;
  margin-bottom: var(--space-s);
}

.section__title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-l);
}

.section__title::after {
  content: '';
  display: block;
  width: 3rem;
  height: 1px;
  background-color: var(--gold);
  margin-top: var(--space-xs);
}


/* · typografie ─────────────────────────── schriften · */

h1, h2, h3 {
  color: var(--heading);
  line-height: 1.2;
}


/* · button ─────────────────────────────── cta · */

.btn {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.9rem 2rem;
  border: 1px solid var(--heading);
  color: var(--heading);
  background-color: transparent;
  transition: background-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.btn--primary:hover {
  background-color: var(--heading);
  color: var(--bg);
}


/* · nav ────────────────────────────────── navigation · */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: var(--bg);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  height: var(--nav-height);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-m);
}

.nav__logo img {
  height: 78px;
  width: auto;
}

.nav__list {
  display: flex;
  gap: var(--space-m);
}

.nav__link {
  position: relative;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  transition: color 0.2s ease;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold);
  transition: width 0.3s ease;
}

.nav__link:hover {
  color: var(--gold);
}

.nav__link:hover::after {
  width: 100%;
}

/* · aktive seite · gold + underline permanent · */
.nav__link--active {
  color: var(--gold);
}

.nav__link--active::after {
  width: 100%;
}

/* · kontakt-link · als gerahmter button · */
.nav__link--cta {
  padding: 0.45rem 1rem;
  border: 1px solid var(--heading);
  color: var(--heading);
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  background-color: var(--heading);
  color: var(--bg);
}

/* · hamburger-button · nur mobil sichtbar · */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  cursor: none;
  transition: border-color 0.2s ease;
}

.nav__burger:hover {
  border-color: var(--border-hover);
}

.nav__burger span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--heading);
  margin-inline: auto;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav__burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* · mobile nav overlay · */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: transform 0.55s cubic-bezier(0.76, 0, 0.24, 1);
}

.mobile-nav.is-open {
  transform: translateY(0);
}

.mobile-nav__close {
  position: absolute;
  top: 2rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  cursor: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: border-color 0.2s ease;
}

.mobile-nav__close:hover {
  border-color: var(--border-hover);
}

.mobile-nav__close span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--heading);
  transition: transform 0.2s ease;
}

.mobile-nav__close span:first-child { transform: translateY(3.5px) rotate(45deg); }
.mobile-nav__close span:last-child  { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-m);
  text-align: center;
}

.mobile-nav__link {
  font-size: clamp(1.4rem, 7vw, 2.2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--heading);
  transition: color 0.2s ease;
}

.mobile-nav__link:hover {
  color: var(--gold);
}

.mobile-nav__link--cta {
  font-size: clamp(1rem, 4vw, 1.2rem);
  padding: 0.9rem 2.5rem;
  border: 1px solid var(--heading);
  margin-top: var(--space-s);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-nav__link--cta:hover {
  background-color: var(--heading);
  color: var(--bg);
}


/* · hero ───────────────────────────────── full-bleed: bild rechts 2/3, text drüber · */

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero__image-wrap {
  position: absolute;
  inset: 0;
  left: 33%;
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* · verlauf: dunkles bg blendet weich ins bild · */
.hero__image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 45%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: var(--space-m);
  min-height: calc(100svh - var(--nav-height));
  padding: var(--space-xl) var(--space-l) var(--space-xl) max(var(--space-m), calc((100vw - var(--container)) / 2 + var(--space-m)));
  max-width: 60%;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-s);
  align-items: center;
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: var(--space-s);
}

.hero__headline {
  font-size: clamp(1.6rem, 3.2vw, 3rem);
  font-weight: 700;
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.15;
  margin-bottom: var(--space-l);
}

.hero__headline span {
  display: block;
  white-space: nowrap;
}


/* · problem ────────────────────────────── pain points · */

.problem__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-s) var(--space-l);
}

.problem__item {
  padding: var(--space-m);
  border: 1px solid var(--border);
  font-size: 0.95rem;
  line-height: 1.6;
  transition: border-color 0.2s ease;
}

.problem__item:hover {
  border-color: var(--border-hover);
}


/* · usp ────────────────────────────────── warum wir · */

.usp__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-m);
}

.usp__item {
  padding: var(--space-m);
  border: 1px solid var(--border);
  font-size: 0.95rem;
  line-height: 1.6;
  transition: border-color 0.2s ease;
}

.usp__item:hover {
  border-color: var(--border-hover);
}


/* · system ─────────────────────────────── 3-stufen · */

.system__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-m);
  counter-reset: system-counter;
}

.system__step {
  counter-increment: system-counter;
  position: relative;
  padding-top: var(--space-l);
}

.system__step::before {
  content: '0' counter(system-counter);
  position: absolute;
  top: 0;
  left: 0;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  opacity: 0.4;
}

.system__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: var(--space-xs);
}

.system__text {
  font-size: 0.95rem;
  line-height: 1.6;
}


/* · leistungen ─────────────────────────── 6 produkte · */

.leistungen__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background-color: var(--border);
}

.leistung {
  background-color: var(--bg);
  padding: var(--space-l) var(--space-m);
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
  transition: background-color 0.2s ease;
}

.leistung:hover {
  background-color: rgba(242, 242, 242, 0.03);
}

.leistung .btn {
  margin-top: auto;
  align-self: flex-start;
}

.leistung__tagline {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: var(--space-xs);
}

.leistung__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: var(--space-s);
}

.leistung__text {
  font-size: 0.9rem;
  line-height: 1.7;
}

.leistung__for {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  opacity: 0.8;
  margin-top: auto;
  padding-top: var(--space-s);
}


/* · start ──────────────────────────────── 3 schritte · */

.start__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-m);
  margin-bottom: var(--space-l);
}

.start__step {
  position: relative;
  padding: var(--space-m);
  border: 1px solid var(--border);
  transition: border-color 0.2s ease;
}

.start__step:hover {
  border-color: var(--border-hover);
}

.start__number {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: var(--space-xs);
}

.start__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-xs);
}

.start__text {
  font-size: 0.9rem;
  line-height: 1.6;
}


/* · stats ──────────────────────────────── ticker-band · */

.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding-block: var(--space-m);
}

.stats__wrapper {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.stats__track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: ticker 28s linear infinite;
}

.stats__track:hover {
  animation-play-state: paused;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.stats__item {
  display: flex;
  align-items: center;
  gap: var(--space-s);
  padding-inline: var(--space-l);
  white-space: nowrap;
}

.stats__number {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stats__label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
}

.stats__sep {
  width: 1px;
  height: 2rem;
  background-color: var(--border);
  flex-shrink: 0;
}


/* · testimonials ───────────────────────── stimmen · */

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-m);
  margin-bottom: var(--space-l);
}

.testimonial {
  padding: var(--space-m);
  border: 1px solid var(--border);
  transition: border-color 0.2s ease;
}

.testimonial:hover {
  border-color: var(--border-hover);
}

.testimonial__text {
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
}

.testimonial__text::before {
  content: '';
  display: block;
  width: 2rem;
  height: 2px;
  background-color: var(--gold);
  margin-bottom: var(--space-s);
}


/* · faq ────────────────────────────────── fragen · */

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background-color: var(--border);
  margin-bottom: var(--space-l);
}

.faq__item {
  background-color: var(--bg);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-m);
  padding: var(--space-m);
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--heading);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq__question:hover {
  color: var(--gold);
}

.faq__question[aria-expanded="true"] {
  color: var(--gold);
}

/* · icon · kreuz aus zwei linien · */
.faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background-color: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq__icon::before {
  width: 14px;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.faq__icon::after {
  width: 1px;
  height: 14px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.faq__question[aria-expanded="true"] .faq__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

/* · body · klappt auf/zu · */
.faq__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.faq__body.is-open {
  max-height: 200px;
}

.faq__answer {
  padding: 0 var(--space-m) var(--space-m);
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text);
}


/* · about ──────────────────────────────── susann · */

.about__text {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: var(--space-m);
}

.about__text + .about__text {
  margin-top: 0;
}


/* · contact ────────────────────────────── kontakt · */

.contact {
  text-align: center;
  border-top: 1px solid var(--border);
}

.contact .section__title::after {
  margin-inline: auto;
}

.contact .section__title {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  text-transform: none;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-l);
}


/* · footer ─────────────────────────────── abschluss · */

.footer {
  padding-block: var(--space-m);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-m);
}

.footer__list {
  display: flex;
  gap: var(--space-m);
}

.footer__link {
  font-size: 0.8rem;
  color: var(--text);
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.footer__link:hover {
  opacity: 1;
}

.footer__copy {
  font-size: 0.8rem;
  opacity: 0.4;
}


/* · funnel ─────────────────────────────── drop-in kontakt-overlay · */

.funnel {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: var(--bg);
  transform: translateY(-100%);
  transition: transform 0.65s cubic-bezier(0.76, 0, 0.24, 1);
  overflow-y: auto;
}

.funnel.is-open {
  transform: translateY(0);
}

.funnel__inner {
  height: 100svh;
  max-width: 720px;
  margin-inline: auto;
  padding: 5vh var(--space-m);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
}

/* · schließen-kreuz · */
.funnel__close {
  position: fixed;
  top: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  cursor: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: border-color 0.2s ease;
}

.funnel__close:hover {
  border-color: var(--border-hover);
}

.funnel__close span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--heading);
  transition: transform 0.2s ease;
}

.funnel__close span:first-child { transform: translateY(3.5px) rotate(45deg); }
.funnel__close span:last-child  { transform: translateY(-3.5px) rotate(-45deg); }

/* · schritte · */
.funnel__step {
  animation: fadeUp 0.4s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.funnel__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: var(--space-s);
}

.funnel__title {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--heading);
  margin-bottom: var(--space-m);
}

/* · option-karten · */
.funnel__options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: var(--space-s);
  margin-bottom: var(--space-m);
}

.funnel__option {
  display: flex;
  cursor: none;
}

.funnel__option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.funnel__option-label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  width: 100%;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.funnel__option-label strong {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--heading);
}

.funnel__option-label small {
  font-size: 0.8rem;
  color: var(--text);
  opacity: 0.7;
  font-weight: 400;
}

.funnel__option:hover .funnel__option-label {
  border-color: var(--border-hover);
}

.funnel__option input:checked + .funnel__option-label {
  border-color: var(--gold);
  background-color: rgba(212, 175, 55, 0.06);
}

/* · formular · */
.funnel__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
}

.funnel__field {
  position: relative;
}

.funnel__field input,
.funnel__field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--heading);
  font-family: var(--font);
  font-size: 1rem;
  padding: 1rem 0 0.5rem;
  outline: none;
  transition: border-color 0.2s ease;
  resize: none;
}

.funnel__field textarea {
  padding-top: 1.5rem;
}

.funnel__field input:focus,
.funnel__field textarea:focus {
  border-color: var(--heading);
}

.funnel__field label {
  position: absolute;
  top: 1rem;
  left: 0;
  font-size: 0.85rem;
  color: var(--text);
  opacity: 0.5;
  pointer-events: none;
  transition: top 0.15s ease, font-size 0.15s ease, opacity 0.15s ease;
}

.funnel__field input:not(:placeholder-shown) + label,
.funnel__field input:focus + label,
.funnel__field textarea:not(:placeholder-shown) + label,
.funnel__field textarea:focus + label {
  top: 0;
  font-size: 0.7rem;
  opacity: 1;
  color: var(--gold);
}

.funnel__actions {
  display: flex;
  align-items: center;
  gap: var(--space-m);
  margin-top: var(--space-s);
}

.funnel__back {
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  opacity: 0.5;
  cursor: none;
  transition: opacity 0.2s ease;
}

.funnel__back:hover { opacity: 1; }

/* · info-block · wusstest du schon · */
.funnel__info {
  border-left: 2px solid var(--gold);
  padding-left: var(--space-m);
  margin-bottom: var(--space-l);
}

.funnel__info-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.funnel__info-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text);
  opacity: 0.8;
  max-width: 55ch;
}

/* · 2-spalten-grid für formularfelder · */
.funnel__fields-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 var(--space-l);
}

/* · danke · */
.funnel__success-text {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: var(--space-l);
  max-width: 40ch;
}


/* · responsive ─────────────────────────── tablet 900px · */

@media (max-width: 900px) {
  .hero__image-wrap {
    left: 0;
  }

  .hero__image-wrap::before {
    background: linear-gradient(to bottom, var(--bg) 0%, transparent 40%);
  }

  .hero__content {
    max-width: 100%;
    padding: var(--space-l) var(--space-m);
  }

.problem__list,
  .usp__list,
  .system__list,
  .start__list,
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  /* · stats ticker braucht kein responsive-grid · */

  .leistungen__grid {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
    gap: var(--space-s);
    text-align: center;
  }
}


/* · responsive ─────────────────────────── mobil 600px · */

@media (max-width: 600px) {
  :root {
    --space-l:  2.5rem;
    --space-xl: 4rem;
  }

  .nav__list {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  .hero__headline {
    font-size: clamp(1.2rem, 6vw, 2rem);
  }

  .hero__headline span {
    white-space: normal;
  }

  .hero__content {
    max-width: 100%;
  }

  .funnel__options {
    grid-template-columns: 1fr;
  }

  .funnel__fields-grid {
    grid-template-columns: 1fr;
  }

  .funnel__close {
    top: 1rem;
    right: 1rem;
  }
}

/* ─────────────────────────────────────── · kinetic code lp · produkt-landingpage · */

.kinetic__fakt {
  border-left: 3px solid var(--gold);
  padding: var(--space-s) var(--space-m);
  margin: var(--space-l) 0;
}

.kinetic__fakt-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: var(--space-xs);
}

.kinetic__fakt-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--heading);
  font-weight: 600;
}

.kinetic__price-box {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  border: 1px solid var(--gold);
  padding: var(--space-l) var(--space-xl);
  margin-inline: auto;
  margin-bottom: var(--space-l);
  width: fit-content;
}

.kinetic__price-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text);
  opacity: 0.6;
}

.kinetic__price-amount {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--heading);
  line-height: 1;
}

.kinetic__price-note {
  font-size: 0.85rem;
  color: var(--text);
  opacity: 0.6;
}

.kinetic__disclaimer {
  font-size: 0.8rem;
  color: var(--text);
  opacity: 0.45;
  margin-top: var(--space-m);
}

.kinetic__vision-list {
  list-style: none;
  padding: 0;
  margin: var(--space-m) 0 var(--space-l);
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
}

.kinetic__vision-item {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--heading);
  display: flex;
  gap: var(--space-s);
}

.kinetic__vision-item::before {
  content: '→';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}


/* ──────────────────────────────────────────────────────────── · bio (über mich) · */

.bio__lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.8;
  color: var(--text);
  margin-bottom: var(--space-l);
}

.bio__text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: var(--space-m);
}

.bio__list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-m) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
}

.bio__item {
  padding-left: var(--space-m);
  border-left: 2px solid var(--gold);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
}

.bio__item strong {
  color: var(--heading);
  display: block;
  margin-bottom: 0.2rem;
}

.bio__arrow-list {
  list-style: none;
  padding: 0;
  margin: var(--space-m) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
}

.bio__arrow-item {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  display: flex;
  gap: var(--space-s);
}

.bio__arrow-item::before {
  content: '→';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.bio__quote {
  font-size: 1.05rem;
  line-height: 1.7;
  font-style: italic;
  color: var(--heading);
  border-left: 3px solid var(--gold);
  padding: var(--space-s) var(--space-m);
  margin: var(--space-l) 0;
}


/* ──────────────────────────────────────── · legal pages (impressum, datenschutz, agb) · */

.legal {
  max-width: 780px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-m);
}

.legal__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-xl);
}

.legal__title::after {
  content: '';
  display: block;
  width: 3rem;
  height: 1px;
  background-color: var(--gold);
  margin-top: var(--space-xs);
}

.legal__section {
  margin-bottom: var(--space-l);
  padding-bottom: var(--space-l);
  border-bottom: 1px solid var(--border);
}

.legal__section:last-child {
  border-bottom: none;
}

.legal__h2 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-s);
}

.legal__h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--heading);
  margin-top: var(--space-s);
  margin-bottom: calc(var(--space-xs) / 2);
}

.legal__p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: var(--space-s);
}

.legal__p:last-child {
  margin-bottom: 0;
}

.legal__placeholder {
  color: var(--gold);
  font-weight: 600;
  font-style: italic;
}
