/* ==========================================================================
   VS.COACHING — Design-System
   Dunkel & Premium · Akzentfarbe zentral über --accent änderbar
   ========================================================================== */

/* ---------- Fonts (lokal gehostet, DSGVO-konform) ---------- */
@font-face {
  font-family: "Anton";
  src: url("../assets/fonts/anton-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ---------- Design-Tokens ---------- */
:root {
  --bg: #0a0a09;
  --bg-2: #0f0f0e;
  --card: #141412;
  --card-hover: #191917;
  --line: rgba(255, 255, 255, 0.09);
  --text: #f4f2ec;
  --muted: #a3a099;
  --accent: #d52822;
  --accent-rgb: 213, 40, 34;
  --accent-strong: #ef6a60;
  --accent-dark: #9c1b16;
  --accent-ink: #ffffff;
  --gradient-accent: linear-gradient(115deg, #ef5a50 0%, #d52822 45%, #a81d18 100%);

  --font-display: "Anton", "Arial Narrow", Impact, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

  --container: 1180px;
  --radius: 14px;
  --radius-sm: 10px;
  --section-pad: clamp(4.5rem, 10vw, 8rem);
  --nav-h: 72px;
}

/* ---------- Reset & Basis ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: var(--accent);
  color: var(--accent-ink);
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* ---------- Utilities ---------- */
.container {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-pad);
  position: relative;
}

.section--alt {
  background: var(--bg-2);
  border-block: 1px solid var(--line);
}

/* Sektion mit Foto-Hintergrund (FAQ) – Bühnenatmosphäre, ohne die Lesbarkeit anzutasten */
.section--photo {
  overflow: hidden;
}

.section--photo > .container {
  position: relative;
  z-index: 1;
}

.section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  opacity: 0.2;
}

/* Kopfzone kräftig abdunkeln, damit die Überschrift nicht mit dem Bühnenbanner kollidiert */
.section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(58% 55% at 50% 45%, rgba(var(--accent-rgb), 0.12), transparent 72%),
    linear-gradient(
      to bottom,
      var(--bg) 0%,
      var(--bg) 17%,
      rgba(10, 10, 9, 0.62) 33%,
      rgba(10, 10, 9, 0.5) 70%,
      var(--bg) 100%
    );
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1rem;
}

.kicker::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: var(--accent);
  opacity: 0.7;
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head--center .kicker {
  justify-content: center;
}

.section-head--center .kicker::after {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: var(--accent);
  opacity: 0.7;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.04;
  letter-spacing: 0.015em;
}

h2 {
  font-size: clamp(2.1rem, 5.2vw, 3.4rem);
}

.section-head p {
  margin-top: 1.15rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.accent {
  color: var(--accent);
}

.text-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(244, 242, 236, 0.85);
}

/* Unbestätigte Angaben — vor Launch prüfen (siehe README) */
.verify {
  border-bottom: 1px dashed rgba(var(--accent-rgb), 0.55);
  cursor: help;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1.05rem 2.1rem;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease,
    border-color 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient-accent);
  color: var(--accent-ink);
  box-shadow: 0 10px 32px rgba(var(--accent-rgb), 0.22);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(var(--accent-rgb), 0.34);
}

.btn--ghost {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent-strong);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 0.7rem 1.4rem;
  font-size: 0.8rem;
}

.btn .btn-arrow {
  transition: transform 0.25s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(10, 10, 9, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.footer .logo-mark {
  width: 56px;
  height: 56px;
}

.logo .accent {
  color: var(--accent);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.nav-cta {
  display: none;
}

/* Burger */
.burger {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.burger span {
  position: relative;
  width: 20px;
  height: 2px;
  background: var(--text);
  transition: background 0.2s ease;
}

.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--text);
  transition: transform 0.25s ease, top 0.25s ease;
}

.burger span::before { top: -6px; }
.burger span::after { top: 6px; }

.nav.menu-open .burger span { background: transparent; }
.nav.menu-open .burger span::before { top: 0; transform: rotate(45deg); }
.nav.menu-open .burger span::after { top: 0; transform: rotate(-45deg); }

/* Mobile-Menü */
.mobile-menu {
  position: fixed;
  inset: var(--nav-h) 0 auto 0;
  z-index: 99;
  background: rgba(10, 10, 9, 0.97);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 1.25rem 2rem;
  display: grid;
  gap: 0.25rem;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  padding: 0.85rem 0.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu a:hover { color: var(--accent); }

.mobile-menu .btn {
  margin-top: 1.25rem;
  justify-content: center;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: clamp(2.5rem, 6vw, 5rem);
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.55;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 45% at 80% 18%, rgba(var(--accent-rgb), 0.12), transparent 70%),
    linear-gradient(to top, var(--bg) 8%, rgba(10, 10, 9, 0.6) 45%, rgba(10, 10, 9, 0.35) 100%);
}

.hero-content {
  position: relative;
}

.hero-logo-bg {
  position: absolute;
  left: -6%;
  bottom: -10%;
  width: min(58vw, 700px);
  opacity: 0.07;
  z-index: -1;
  pointer-events: none;
  user-select: none;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid rgba(var(--accent-rgb), 0.4);
  background: rgba(10, 10, 9, 0.55);
  color: var(--accent-strong);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}

.hero-tag .hero-tag-logo {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.hero-tag .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.hero h1 {
  font-size: clamp(2.9rem, 10vw, 6.6rem);
  max-width: 14ch;
  text-wrap: balance;
}

.hero-sub {
  margin-top: 1.5rem;
  max-width: 620px;
  color: rgba(244, 242, 236, 0.82);
  font-size: clamp(1.02rem, 2.4vw, 1.18rem);
}

.hero-sub strong { color: var(--text); }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.2rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2.6rem;
}

.hero-badges li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--muted);
  border: 1px solid var(--line);
  background: rgba(15, 15, 14, 0.6);
  border-radius: 999px;
  padding: 0.5rem 1rem;
}

.hero-badges li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ---------- Marquee ---------- */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  padding-block: 1.05rem;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 242, 236, 0.55);
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  white-space: nowrap;
}

.marquee-track span::after {
  content: "✦";
  color: var(--accent);
  font-size: 0.8rem;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- Statistiken ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat {
  background: var(--card);
  padding: clamp(1.6rem, 4vw, 2.6rem) clamp(1.2rem, 3vw, 2rem);
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  line-height: 1;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  margin-top: 0.7rem;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ---------- 360°-Intro ---------- */
.intro-copy {
  max-width: 800px;
}

.intro-copy p {
  margin-bottom: 1.2rem;
  color: rgba(244, 242, 236, 0.82);
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.intro-copy .lede {
  font-size: 1.18rem;
  color: var(--text);
  font-weight: 500;
}

.intro-copy strong {
  color: var(--text);
}

/* Schlusssatz des Ansatzes – trägt die Kernaussage der Seite */
.intro-copy .intro-claim {
  margin-top: 2rem;
  padding-left: 1.3rem;
  border-left: 3px solid var(--accent);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  line-height: 1.28;
  text-transform: uppercase;
  letter-spacing: 0.012em;
  color: var(--text);
}

/* ---------- Karten-Grids (Für wen / Leistungen) ---------- */
.grid-3 {
  display: grid;
  gap: 1.4rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 2.4rem);
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--accent-rgb), 0.45);
  background: var(--card-hover);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(var(--accent-rgb), 0.1);
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  color: var(--accent);
  margin-bottom: 1.4rem;
}

.card-icon svg {
  width: 26px;
  height: 26px;
}

.card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.8rem;
}

.card p {
  color: var(--muted);
  font-size: 0.98rem;
}

.card p + p {
  margin-top: 0.85rem;
}

.card-num {
  position: absolute;
  top: 1.4rem;
  right: 1.6rem;
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 242, 236, 0.18);
}

/* Leistungs-Karten */
.service-card .card-tag {
  position: absolute;
  top: -0.85rem;
  left: 1.6rem;
  background: var(--gradient-accent);
  color: var(--accent-ink);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
}

.service-card.featured {
  border-color: rgba(var(--accent-rgb), 0.55);
  background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.07), rgba(20, 20, 18, 1) 45%);
}

.service-features {
  margin-top: 1.3rem;
  margin-bottom: 1.8rem;
  display: grid;
  gap: 0.65rem;
  flex-grow: 1;
  align-content: start;
}

.service-features li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: rgba(244, 242, 236, 0.86);
}

.service-features li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 0.22rem;
  background-color: var(--accent);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6L9 17l-5-5"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6L9 17l-5-5"/></svg>') center / contain no-repeat;
}

.service-card .btn {
  align-self: flex-start;
}

/* ---------- Über mich ---------- */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.about-media {
  position: relative;
  max-width: 480px;
}

.about-media::before {
  content: "";
  position: absolute;
  inset: 1.4rem -1.4rem -1.4rem 1.4rem;
  border: 1px solid rgba(var(--accent-rgb), 0.4);
  border-radius: var(--radius);
  z-index: -1;
}

.about-media img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.about-media .about-caption {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  background: rgba(10, 10, 9, 0.78);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1.1rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-strong);
  font-weight: 700;
}

.about-text > p {
  margin-bottom: 1.15rem;
  color: rgba(244, 242, 236, 0.85);
}

.about-text > p strong {
  color: var(--text);
}

.about-facts {
  margin-top: 1.8rem;
  display: grid;
  gap: 0.8rem;
}

.about-facts li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.15rem;
  font-size: 0.95rem;
}

.about-facts .fact-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.about-facts .fact-icon svg {
  width: 20px;
  height: 20px;
}

/* ---------- Leistungsumfang (Feature-Grid) ---------- */
.included-grid {
  display: grid;
  gap: 1.4rem;
}

.included-item {
  border-left: 2px solid rgba(var(--accent-rgb), 0.5);
  padding: 0.35rem 0 0.35rem 1.4rem;
}

.included-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.45rem;
}

.included-item p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Leadzeile je Leistung – der Merksatz, der hängen bleiben soll */
.included-item .included-claim {
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 0.55rem;
}

/* ---------- Erfolge ---------- */
.results-grid {
  display: grid;
  gap: 1.4rem;
}

.result-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.result-card:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--accent-rgb), 0.45);
}

.result-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  position: relative;
}

.result-images img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.result-images figcaption {
  position: absolute;
  bottom: 0.7rem;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(10, 10, 9, 0.8);
}

.result-images .cap-before { left: 0.7rem; color: var(--muted); }
.result-images .cap-after { right: 0.7rem; color: var(--accent-strong); }

.result-body {
  padding: 1.6rem 1.6rem 1.7rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.result-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.result-body p {
  color: var(--muted);
  font-size: 0.94rem;
}

.example-badge {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 2;
  background: rgba(10, 10, 9, 0.85);
  border: 1px dashed rgba(var(--accent-rgb), 0.6);
  color: var(--accent-strong);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
}

.result-images--single {
  grid-template-columns: 1fr;
}

.result-images--single img {
  aspect-ratio: auto;
}

.result-quote {
  margin-top: 1.3rem;
  padding: 1.15rem 1.2rem 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(244, 242, 236, 0.88);
  line-height: 1.65;
  position: relative;
}

.result-quote::before {
  content: "\201E";
  position: absolute;
  top: -1.4rem;
  left: 0.55rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.4rem;
  line-height: 1;
  color: rgba(var(--accent-rgb), 0.35);
  pointer-events: none;
}

.result-quote cite {
  display: block;
  margin-top: 0.6rem;
  padding-top: 0.55rem;
  border-top: 1px solid var(--line);
  font-style: normal;
  font-weight: 700;
  font-size: 0.74rem;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  gap: 1.4rem;
  margin-top: 1.4rem;
}

.testimonial {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.testimonial .stars {
  color: var(--accent);
  letter-spacing: 0.2em;
  font-size: 0.9rem;
}

.testimonial blockquote {
  color: rgba(244, 242, 236, 0.88);
  font-size: 0.98rem;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.testimonial-author .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(var(--accent-rgb), 0.12);
  border: 1px solid rgba(var(--accent-rgb), 0.4);
  color: var(--accent-strong);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.testimonial-author .author-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial-author .author-meta {
  color: var(--muted);
  font-size: 0.82rem;
}

/* Bühnen-Leiste (Athleten-Momente) */
.stage-strip {
  margin-top: clamp(2.5rem, 6vw, 4rem);
}

.stage-strip-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.stage-strip-head h3 {
  font-size: 1.2rem;
}

.stage-strip-head .strip-note {
  color: var(--muted);
  font-size: 0.85rem;
}

.stage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.stage-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.stage-grid img:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--accent-rgb), 0.45);
}

/* Über-mich Foto-Galerie */
.about-main {
  position: relative;
  margin: 0;
}

.about-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-top: 2.2rem;
}

.about-gallery figure {
  margin: 0;
}

.about-gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.about-gallery figcaption {
  margin-top: 0.5rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-gallery figcaption b {
  color: var(--accent-strong);
}

.about-statement {
  margin-top: 1.4rem;
  padding-left: 1.1rem;
  border-left: 2px solid var(--accent);
  font-size: 0.93rem;
  font-style: italic;
  color: var(--muted);
  line-height: 1.7;
}

/* ---------- Ablauf ---------- */
.steps {
  display: grid;
  gap: 1.4rem;
  counter-reset: step;
}

.step {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem 1.8rem;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--accent-rgb), 0.45);
}

.step-num {
  font-family: var(--font-display);
  font-size: 4.4rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(var(--accent-rgb), 0.55);
  display: block;
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
}

.step p {
  color: var(--muted);
  font-size: 0.97rem;
}

/* ---------- Diagnose-Zitat ---------- */
/* Steht zwischen zwei Sektionen und soll als Unterbrechung wirken,
   nicht als weitere Sektion – daher dunkler Grund mit rotem Schimmer. */
.diagnose {
  padding-block: clamp(3rem, 7vw, 5rem);
  background:
    radial-gradient(60% 120% at 50% 50%, rgba(var(--accent-rgb), 0.13), transparent 70%),
    var(--bg);
  border-block: 1px solid var(--line);
}

.diagnose-quote {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
  position: relative;
  padding-top: 2.4rem;
}

/* dekoratives Anführungszeichen */
.diagnose-quote::before {
  content: "\201C";
  position: absolute;
  top: -0.6rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.5;
}

.diagnose-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2.15rem);
  line-height: 1.24;
  text-transform: uppercase;
  letter-spacing: 0.012em;
  color: var(--text);
}

.diagnose-quote cite {
  display: block;
  margin-top: 1.4rem;
  font-style: normal;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

/* ---------- Passen wir zusammen? ---------- */
.fit-grid {
  display: grid;
  gap: 1.4rem;
}

.fit-col {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
}

.fit-col--yes {
  border-color: rgba(var(--accent-rgb), 0.35);
  box-shadow: inset 3px 0 0 var(--accent);
}

.fit-col h3 {
  font-size: 1.25rem;
  margin-bottom: 1.3rem;
  line-height: 1.3;
}

.fit-list {
  list-style: none;
  display: grid;
  gap: 0.95rem;
}

.fit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.6;
}

.fit-icon {
  flex-shrink: 0;
  width: 1.45rem;
  height: 1.45rem;
  margin-top: 0.12rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.fit-icon svg {
  width: 0.85rem;
  height: 0.85rem;
}

.fit-col--yes .fit-icon {
  background: rgba(var(--accent-rgb), 0.16);
  color: var(--accent-strong);
}

.fit-col--no .fit-icon {
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

.fit-close {
  margin-top: 2rem;
  text-align: center;
}

.fit-close p {
  color: var(--muted);
  max-width: 46rem;
  margin: 0 auto 1.5rem;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 820px;
  margin-inline: auto;
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 0.3s ease;
}

.faq-item[open] {
  border-color: rgba(var(--accent-rgb), 0.45);
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  font-size: 1.02rem;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary .faq-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1;
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item[open] summary .faq-icon {
  transform: rotate(45deg);
  background: rgba(var(--accent-rgb), 0.12);
}

.faq-item .faq-body {
  padding: 0 1.5rem 1.35rem;
  color: var(--muted);
  font-size: 0.97rem;
  max-width: 62ch;
}

/* ---------- Bewerbung / Formular ---------- */
.apply {
  position: relative;
  overflow: hidden;
}

.apply::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(55% 40% at 50% 0%, rgba(var(--accent-rgb), 0.1), transparent 75%);
  pointer-events: none;
}

.apply-box {
  position: relative;
  max-width: 860px;
  margin-inline: auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(1.8rem, 5vw, 3.2rem);
}

.apply-note {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  background: rgba(var(--accent-rgb), 0.07);
  border: 1px solid rgba(var(--accent-rgb), 0.25);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  font-size: 0.92rem;
  color: rgba(244, 242, 236, 0.85);
  margin-bottom: 2rem;
}

.apply-note svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--accent);
  margin-top: 0.2rem;
}

.form-grid {
  display: grid;
  gap: 1.3rem;
}

.form-field {
  display: grid;
  gap: 0.5rem;
}

.form-field label {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244, 242, 236, 0.85);
}

.form-field label .req {
  color: var(--accent);
}

.form-field label .opt {
  color: var(--muted);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
  font: inherit;
  font-size: 1rem;
  padding: 0.85rem 1.05rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.16);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(163, 160, 153, 0.6);
}

.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23D52822" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6 6-6"/></svg>');
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.8rem;
}

/* Radio-Pills */
.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

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

.pill-group label {
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 999px;
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  text-transform: none;
  letter-spacing: 0;
}

.pill-group label:hover {
  border-color: rgba(var(--accent-rgb), 0.5);
  color: var(--text);
}

.pill-group input:checked + label {
  background: rgba(var(--accent-rgb), 0.14);
  border-color: var(--accent);
  color: var(--accent-strong);
}

.pill-group input:focus-visible + label {
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.25);
}

/* Checkbox */
.checkbox-field {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--muted);
}

.checkbox-field input {
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 0.2rem;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--bg);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.checkbox-field input:checked {
  background: var(--accent);
  border-color: var(--accent);
}

.checkbox-field input:checked::after {
  content: "";
  width: 11px;
  height: 11px;
  background: var(--accent-ink);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6L9 17l-5-5"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6L9 17l-5-5"/></svg>') center / contain no-repeat;
}

.checkbox-field input:focus-visible {
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.25);
}

.checkbox-field a {
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-submit {
  margin-top: 0.6rem;
  display: grid;
  gap: 0.9rem;
}

.form-submit .btn {
  width: 100%;
}

.form-hint {
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
}

.form-status {
  display: none;
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.form-status.success {
  display: block;
  background: rgba(90, 170, 90, 0.12);
  border: 1px solid rgba(90, 170, 90, 0.45);
  color: #9fd89f;
}

.form-status.error {
  display: block;
  background: rgba(200, 80, 80, 0.12);
  border: 1px solid rgba(200, 80, 80, 0.45);
  color: #e8a0a0;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  padding-block: 3rem 2rem;
}

.footer-inner {
  display: grid;
  gap: 2rem;
}

.footer .logo {
  font-size: 1.5rem;
}

.footer-tagline {
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 34ch;
  margin-top: 0.6rem;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.footer-col ul {
  display: grid;
  gap: 0.55rem;
}

.footer-col a {
  color: rgba(244, 242, 236, 0.75);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--accent-strong);
}

.socials {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.socials a {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--muted);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.socials a:hover {
  color: var(--accent-strong);
  border-color: rgba(var(--accent-rgb), 0.5);
  transform: translateY(-2px);
}

.socials svg {
  width: 19px;
  height: 19px;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2rem;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.82rem;
}

/* ---------- Rechtsseiten ---------- */
.legal-page {
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 5rem;
  max-width: 800px;
}

.legal-page h1 {
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.legal-page ul {
  list-style: disc;
  padding-left: 1.4rem;
}

.legal-placeholder {
  background: rgba(var(--accent-rgb), 0.08);
  border: 1px dashed rgba(var(--accent-rgb), 0.5);
  border-radius: var(--radius-sm);
  padding: 0.15rem 0.5rem;
  color: var(--accent-strong);
  font-weight: 600;
}

.legal-note {
  background: var(--card);
  border: 1px solid rgba(var(--accent-rgb), 0.35);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.4rem;
  margin-bottom: 2.5rem;
  color: rgba(244, 242, 236, 0.85);
}

/* ---------- Scroll-Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .marquee-track { animation: none; }
  .hero-tag .dot { animation: none; }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ---------- Breakpoints ---------- */
@media (min-width: 640px) {
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.3rem;
  }

  .included-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 3rem;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }



  .form-submit .btn {
    width: auto;
    justify-self: center;
    padding-inline: 3.4rem;
  }
}

/* Nur im Zweispalter: der fünfte Schritt füllt die Reihe.
   Bewusst nach oben begrenzt, sonst schlägt :last-child das 6-Spalten-Raster ab 1000 px. */
@media (min-width: 640px) and (max-width: 999px) {
  .steps .step:last-child { grid-column: 1 / -1; }
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .burger { display: none; }
  .mobile-menu { display: none; }

  .stats { grid-template-columns: repeat(4, 1fr); }

  .grid-3 { grid-template-columns: repeat(3, 1fr); }

  .grid-2 { grid-template-columns: repeat(2, 1fr); }

  .grid-4 { grid-template-columns: repeat(2, 1fr); }

  /* Zwei Spalten: ergibt drei saubere Reihen – die letzte gehört den beiden
     Karten mit Kundenzitat, dadurch entsteht nirgends toter Raum. */
  .results-grid { grid-template-columns: repeat(2, 1fr); }

  .stage-grid { grid-template-columns: repeat(4, 1fr); }

  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }

  .fit-grid { grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }

  .about-grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    gap: clamp(3rem, 6vw, 5.5rem);
  }

  .footer-inner {
    grid-template-columns: 2.2fr 1fr 1fr;
    gap: 3rem;
  }

  .hero {
    align-items: center;
  }

  .hero-media {
    left: auto;
    width: 58%;
  }

  .hero-media img {
    opacity: 0.85;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 38%);
    mask-image: linear-gradient(to right, transparent 0%, black 38%);
  }

  .hero::before {
    background:
      radial-gradient(50% 55% at 78% 30%, rgba(var(--accent-rgb), 0.14), transparent 70%),
      linear-gradient(to top, var(--bg) 4%, transparent 40%),
      linear-gradient(to right, var(--bg) 30%, rgba(10, 10, 9, 0.25) 62%, rgba(10, 10, 9, 0.05) 100%);
  }
}

/* Fünf Ablauf-Schritte nebeneinander – schlankere Karten */
@media (min-width: 1000px) {
  .steps {
    grid-template-columns: repeat(5, 1fr);
    gap: 0.9rem;
  }

  .step {
    padding: 1.7rem 1.2rem 1.4rem;
  }

  .step-num {
    font-size: 3.2rem;
    margin-bottom: 0.7rem;
  }

  .step h3 {
    font-size: 1.12rem;
    margin-bottom: 0.55rem;
  }

  .step p {
    font-size: 0.885rem;
  }
}
