/* ==========================================================================
   NG Fitness & Health — Personal Training fuer Unternehmer
   Design: Editorial Premium + Dark Dramatic Hero (Tom-Kova-Style)
   Farben: #279c94 tuerkis / #00315c dunkelblau / #FAFAF7 creme
   ========================================================================== */

/* Lokale Schriftarten — siehe v2.css fuer @font-face Definitionen */

/* --- Design Tokens ------------------------------------------------------ */
:root {
  --c-tuerkis: #279c94;
  --c-tuerkis-dark: #1f837c;
  --c-tuerkis-rgb: 39, 156, 148;
  --c-navy: #00315c;
  --c-navy-dark: #002344;
  --c-navy-deep: #001a33;
  --c-creme: #FAFAF7;
  --c-creme-2: #F3EFE8;
  --c-stone: #E8E4DD;
  --c-ink: #0F1720;
  --c-body: #3B4654;
  --c-muted: rgba(15, 23, 32, 0.58);
  --c-white: #FFFFFF;
  --c-hairline: rgba(15, 23, 32, 0.12);
  --c-hairline-dark: rgba(255, 255, 255, 0.14);

  --font-head: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.7, 0, 0.84, 0);

  --container: 1240px;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(0, 49, 92, 0.08), 0 2px 8px rgba(0, 49, 92, 0.04);
  --shadow-lg: 0 30px 80px rgba(0, 49, 92, 0.18), 0 10px 30px rgba(0, 49, 92, 0.08);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-body);
  background: var(--c-creme);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--c-ink);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  text-wrap: balance;
}

p { text-wrap: pretty; }

h1 em, h2 em, h3 em, h4 em,
h1 .accent, h2 .accent, h3 .accent, h4 .accent,
.accent {
  font-family: var(--font-head) !important;
  font-style: normal !important;
  font-weight: inherit;
  color: var(--c-tuerkis);
}

::selection { background: var(--c-tuerkis); color: #fff; }

/* --- Utilities ---------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--c-navy);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

:focus-visible {
  outline: 2px solid var(--c-tuerkis);
  outline-offset: 3px;
  border-radius: 2px;
}

.kicker {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-tuerkis);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.kicker::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-tuerkis);
}

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.6rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.4s var(--ease);
  min-height: 48px;
}
.btn-primary {
  background: var(--c-navy);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 49, 92, 0.25);
}
.btn-primary:hover {
  background: var(--c-tuerkis);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(var(--c-tuerkis-rgb), 0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--c-ink);
  border: 1px solid var(--c-hairline);
}
.btn-ghost:hover { background: var(--c-ink); color: #fff; }
.btn-light {
  background: #fff;
  color: var(--c-navy);
}
.btn-light:hover { background: var(--c-tuerkis); color: #fff; transform: translateY(-2px); }

.btn-arrow {
  display: inline-block;
  transition: transform 0.4s var(--ease);
}
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ========================================================================
   NAV
   ======================================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background 0.35s var(--ease), padding 0.35s var(--ease), border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(0, 26, 51, 0.92);
  backdrop-filter: saturate(1.2) blur(14px);
  -webkit-backdrop-filter: saturate(1.2) blur(14px);
  padding: 0.85rem 0;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}
.nav__logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-tuerkis);
  display: grid;
  place-items: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: #00315c;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}
.nav__links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav__links a:hover { color: #fff; }
.nav__cta {
  background: var(--c-tuerkis);
  color: #fff;
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.3s, transform 0.3s var(--ease);
}
.nav__cta:hover { background: #fff; color: var(--c-navy); transform: translateY(-1px); }

.nav__burger {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 200;
}
.nav__burger span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s, top 0.3s, opacity 0.3s;
}
.nav__burger span:nth-child(1) { top: 16px; }
.nav__burger span:nth-child(2) { top: 22px; }
.nav__burger span:nth-child(3) { top: 28px; }
.nav.is-open .nav__burger span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* ========================================================================
   HERO — Tom-Kova-Split, dunkles Navy, Portrait rechts
   ======================================================================== */
.hero {
  position: relative;
  min-height: 78vh;
  background: var(--c-navy-deep);
  color: #fff;
  overflow: hidden;
  padding: 8rem 0 4rem;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 500px at 20% 60%, rgba(var(--c-tuerkis-rgb), 0.12), transparent 65%);
  pointer-events: none;
  z-index: 1;
}

.hero > .container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero__grid {
  width: 100%;
  max-width: 620px;
}

.hero__content { max-width: 560px; }

/* Full-Bleed Bild rechts, verschmilzt links mit Navy via Gradient (Tom-Kova-Style) */
.hero__media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 66%;
  z-index: 2;
  overflow: hidden;
}
.hero__media-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.98) contrast(1.05);
}
.hero__media-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      var(--c-navy-deep) 0%,
      rgba(0, 26, 51, 0.92) 12%,
      rgba(0, 26, 51, 0.5) 35%,
      rgba(0, 26, 51, 0.1) 65%,
      rgba(0, 26, 51, 0) 100%),
    linear-gradient(to bottom,
      rgba(0, 26, 51, 0.2) 0%,
      transparent 25%,
      transparent 75%,
      rgba(0, 26, 51, 0.3) 100%);
  pointer-events: none;
}
.hero__kicker {
  color: var(--c-tuerkis);
  margin-bottom: 2rem;
}
.hero__kicker::before { background: var(--c-tuerkis); }

.hero__title {
  font-size: clamp(2.25rem, 4.5vw, 3.8rem);
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-style: normal;
  font-weight: 700;
  color: var(--c-tuerkis);
}

.hero__lead {
  font-size: 1.1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero__checks {
  list-style: none;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.hero__checks li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.4;
}
.hero__checks svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--c-tuerkis);
  margin-top: 0.15rem;
}

.hero__actions {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}

/* -- legacy (nicht mehr genutzt, weggeraeumt in Hero-Rebuild) -- */
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 25%;
  border-radius: var(--radius-lg);
  filter: saturate(0.97) contrast(1.04);
}
.hero__image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, transparent 55%, rgba(0, 26, 51, 0.55) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero__image-wrap::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(var(--c-tuerkis-rgb), 0.55), transparent 50%);
  z-index: -1;
  filter: blur(28px);
  opacity: 0.7;
}

.hero__image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1.1rem;
  background: rgba(15, 23, 32, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  text-align: center;
  justify-content: center;
}
.hero__image-badge-dot {
  width: 8px; height: 8px;
  background: var(--c-tuerkis);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Trust-Ticker unter Hero */
.trust-ticker {
  position: relative;
  z-index: 3;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  height: 70px;
  display: flex;
  align-items: center;
}
.trust-ticker__track {
  display: flex;
  gap: 3.5rem;
  align-items: center;
  animation: ticker 45s linear infinite;
  white-space: nowrap;
  flex-shrink: 0;
  padding-left: 3.5rem;
}
.trust-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 500;
  flex-shrink: 0;
}
.trust-ticker__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-tuerkis);
  flex-shrink: 0;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-33.3333%); }
}

/* ========================================================================
   GENERIC SECTION SCAFFOLDING
   ======================================================================== */
section { position: relative; }
.section {
  padding: clamp(4rem, 9vw, 8rem) 0;
}
.section--tight { padding: clamp(3rem, 6vw, 5rem) 0; }

.section-head {
  max-width: 780px;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.section-head h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.section-head h2 em {
  
  color: var(--c-tuerkis);
  font-weight: 400;
}
.section-head p {
  font-size: 1.1rem;
  color: var(--c-body);
  max-width: 640px;
  line-height: 1.6;
}

/* Reveal animation base */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal--stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal--stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal--stagger.is-visible > *:nth-child(2) { transition-delay: 0.15s; }
.reveal--stagger.is-visible > *:nth-child(3) { transition-delay: 0.25s; }
.reveal--stagger.is-visible > *:nth-child(4) { transition-delay: 0.35s; }
.reveal--stagger.is-visible > *:nth-child(5) { transition-delay: 0.45s; }

/* ========================================================================
   PROBLEME — "Kennen Sie das?"
   ======================================================================== */
.problems {
  background: var(--c-creme);
  position: relative;
}
.problems__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: stretch;
}
.problems__card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  border: 1px solid var(--c-hairline);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.problems__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.problems__card--wide {
  grid-column: span 2;
  background: var(--c-navy);
  color: #fff;
  border: none;
  position: relative;
  overflow: hidden;
}
.problems__card--wide::before {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 80%; height: 200%;
  background: radial-gradient(circle, rgba(var(--c-tuerkis-rgb), 0.35), transparent 60%);
  pointer-events: none;
}
.problems__card--wide p { color: rgba(255, 255, 255, 0.82); }
.problems__card--wide h3 { color: #fff; }

.problems__num {
  font-family: var(--font-head);
  
  font-size: 0.9rem;
  color: var(--c-tuerkis);
  font-weight: 400;
}
.problems__card h3 {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.25;
}
.problems__card p {
  color: var(--c-body);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ========================================================================
   LEISTUNGEN — 3 Angebote, Bento-Grid
   ======================================================================== */
.leistungen { background: var(--c-creme-2); }

.leistungen__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 1rem;
}
.leistung {
  position: relative;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 500px;
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.leistung:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.leistung__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--c-stone);
}
.leistung__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.leistung:hover .leistung__image img { transform: scale(1.05); }
.leistung__body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.leistung__tag {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-tuerkis);
}
.leistung h3 {
  font-size: 1.6rem;
  font-weight: 500;
}
.leistung p {
  color: var(--c-body);
  font-size: 0.98rem;
  line-height: 1.55;
}
.leistung__features {
  list-style: none;
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  border-top: 1px solid var(--c-hairline);
}
.leistung__features li {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--c-ink);
}
.leistung__features li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--c-tuerkis);
  border-radius: 50%;
  flex-shrink: 0;
  transform: translateY(-2px);
}
.leistung--featured {
  grid-row: span 1;
  background: var(--c-navy);
  color: #fff;
  min-height: 500px;
}
.leistung--featured h3 { color: #fff; }
.leistung--featured p { color: rgba(255, 255, 255, 0.8); }
.leistung--featured .leistung__features { border-color: rgba(255, 255, 255, 0.15); }
.leistung--featured .leistung__features li { color: rgba(255, 255, 255, 0.92); }

/* ========================================================================
   METHODE — Wow-Section mit grosser Typo + Sticky Stack
   ======================================================================== */
.methode {
  background: var(--c-ink);
  color: #fff;
  padding: clamp(5rem, 10vw, 10rem) 0;
  position: relative;
  overflow: hidden;
}
.methode::before {
  content: '';
  position: absolute;
  top: 10%; left: -10%;
  width: 60%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(var(--c-tuerkis-rgb), 0.18), transparent 65%);
  filter: blur(80px);
  pointer-events: none;
}
.methode .section-head h2,
.methode .section-head h2 em { color: #fff; }
.methode .section-head h2 em { color: var(--c-tuerkis); }
.methode .section-head p { color: rgba(255, 255, 255, 0.7); }
.methode .kicker { color: var(--c-tuerkis); }

.methode__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  position: relative;
}
.methode__visual {
  position: sticky;
  top: 10vh;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
}
.methode__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}
.methode__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
}
.methode__pillar-name {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  right: 2rem;
  color: #fff;
  font-family: var(--font-head);
  
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.02em;
  pointer-events: none;
}

.methode__pillars {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 6rem);
}
.pillar {
  position: relative;
  padding-left: 4.5rem;
}
.pillar__num {
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 2.4rem;
  color: var(--c-tuerkis);
  
  line-height: 1;
}
.pillar__num::after {
  content: '';
  position: absolute;
  left: 0; top: calc(100% + 0.5rem);
  width: 32px;
  height: 1px;
  background: var(--c-tuerkis);
}
.pillar h3 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  color: #fff;
  font-weight: 500;
  margin-bottom: 1rem;
  
}
.pillar p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.pillar__facts {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.pillar__facts li {
  font-size: 0.78rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.01em;
}

/* ========================================================================
   FALLSTUDIEN — Testimonial-Karten
   ======================================================================== */
.fallstudien { background: var(--c-creme); }

.fallstudien__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}
.case {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--c-hairline);
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.case:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.case--hero {
  grid-row: span 2;
  background: var(--c-navy);
  color: #fff;
  border: none;
}
.case--hero h3, .case--hero blockquote { color: #fff; }
.case--hero p, .case--hero .case__meta { color: rgba(255, 255, 255, 0.72); }

.case__image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--c-stone);
}
.case--hero .case__image { aspect-ratio: 4/3; }
.case__image img { width: 100%; height: 100%; object-fit: cover; }

.case__body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.case__meta {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 600;
}
.case h3 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.25;
}
.case--hero h3 { font-size: 1.85rem; }
.case blockquote {
  font-family: var(--font-head);
  
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--c-ink);
  border-left: 2px solid var(--c-tuerkis);
  padding-left: 1rem;
  margin: 0.5rem 0;
}
.case--hero blockquote { color: #fff; border-left-color: var(--c-tuerkis); }
.case__result {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--c-hairline);
  font-size: 0.88rem;
  color: var(--c-ink);
  font-weight: 500;
}
.case--hero .case__result { color: var(--c-tuerkis); border-top-color: rgba(255,255,255,0.15); }

/* ========================================================================
   ABLAUF — Timeline
   ======================================================================== */
.ablauf { background: #fff; }
.ablauf__timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
  padding-top: 2rem;
}
.ablauf__timeline::before {
  content: '';
  position: absolute;
  top: calc(2rem + 19px);
  left: 4%;
  right: 4%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-hairline) 10%, var(--c-hairline) 90%, transparent);
}
.step {
  position: relative;
  padding-top: 3rem;
  text-align: left;
}
.step__dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-creme);
  border: 1px solid var(--c-hairline);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  color: var(--c-tuerkis);
  font-weight: 500;
  font-size: 1rem;
  
  transition: background 0.4s, color 0.4s, transform 0.4s var(--ease);
}
.step:hover .step__dot {
  background: var(--c-navy);
  color: var(--c-tuerkis);
  transform: scale(1.08);
}
.step h3 {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
}
.step p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--c-body);
}

/* ========================================================================
   UEBER-MICH — Split mit Quote-Layer
   ======================================================================== */
.about {
  background: var(--c-creme-2);
  position: relative;
}
.about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.about__image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-navy);
  letter-spacing: -0.005em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.about__badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--c-tuerkis);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(var(--c-tuerkis-rgb), 0.5); }
  50% { box-shadow: 0 0 0 10px rgba(var(--c-tuerkis-rgb), 0); }
}

.about__content h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1.5rem;
}
.about__content h2 em {  color: var(--c-tuerkis); font-weight: 400; }
.about__content p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  color: var(--c-body);
}
.about__content p strong { color: var(--c-ink); font-weight: 600; }

.about__credentials {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--c-hairline);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.about__credential small {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-tuerkis);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.about__credential strong {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--c-ink);
  line-height: 1.3;
  display: block;
}

/* ========================================================================
   FAQ
   ======================================================================== */
.faq { background: var(--c-creme); }
.faq__wrap {
  max-width: 860px;
  margin-inline: auto;
}
.faq__item {
  border-bottom: 1px solid var(--c-hairline);
}
.faq__item:first-child { border-top: 1px solid var(--c-hairline); }
.faq__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 1.65rem 0;
  text-align: left;
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  color: var(--c-ink);
  font-weight: 500;
  letter-spacing: -0.01em;
  
  transition: color 0.3s;
}
.faq__trigger:hover { color: var(--c-tuerkis); }

.faq__icon {
  width: 34px; height: 34px;
  border: 1px solid var(--c-hairline);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: currentColor;
}
.faq__icon::before { width: 12px; height: 1.5px; }
.faq__icon::after { width: 1.5px; height: 12px; transition: transform 0.4s var(--ease); }
.faq__item[aria-expanded="true"] .faq__icon {
  background: var(--c-navy);
  border-color: var(--c-navy);
  color: #fff;
}
.faq__item[aria-expanded="true"] .faq__icon::after { transform: scaleY(0); }

.faq__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease);
}
.faq__body > div {
  overflow: hidden;
}
.faq__item[aria-expanded="true"] .faq__body {
  grid-template-rows: 1fr;
}
.faq__body p {
  padding: 0 0 1.75rem 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--c-body);
  max-width: 720px;
}

/* ========================================================================
   FINAL CTA
   ======================================================================== */
.cta-final {
  background: var(--c-navy-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 9rem) 0;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: -30%; left: 50%;
  transform: translateX(-50%);
  width: 120%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(var(--c-tuerkis-rgb), 0.15), transparent 55%);
  filter: blur(60px);
  pointer-events: none;
}
.cta-final__wrap {
  position: relative;
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
}
.cta-final h2 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  color: #fff;
  margin-bottom: 1.5rem;
  
}
.cta-final h2 em {  color: var(--c-tuerkis); font-weight: 400; }
.cta-final p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-inline: auto;
}
.cta-final__actions {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ========================================================================
   KONTAKT
   ======================================================================== */
.kontakt { background: #fff; }
.kontakt__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.kontakt__info h2 {
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  margin-bottom: 1.25rem;
}
.kontakt__info h2 em {  color: var(--c-tuerkis); font-weight: 400; }
.kontakt__info p {
  color: var(--c-body);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.kontakt__details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.kontakt__details li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--c-creme);
  border-radius: var(--radius-md);
  border: 1px solid var(--c-hairline);
  transition: border-color 0.3s, background 0.3s;
}
.kontakt__details li:hover { border-color: var(--c-tuerkis); background: #fff; }
.kontakt__details svg {
  flex-shrink: 0;
  width: 22px; height: 22px;
  color: var(--c-tuerkis);
  margin-top: 0.1rem;
}
.kontakt__details small {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.kontakt__details strong {
  font-size: 1rem;
  color: var(--c-ink);
  font-weight: 500;
}
.kontakt__details a strong:hover { color: var(--c-tuerkis); }

.kontakt__form {
  background: var(--c-creme-2);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--c-hairline);
}
.kontakt__form h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.kontakt__form p.hint {
  font-size: 0.92rem;
  color: var(--c-muted);
  margin-bottom: 2rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.field label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.field input,
.field textarea,
.field select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--c-hairline);
  background: #fff;
  border-radius: var(--radius-sm);
  color: var(--c-ink);
  transition: border-color 0.3s, box-shadow 0.3s;
  min-height: 48px;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--c-tuerkis);
  outline: none;
  box-shadow: 0 0 0 4px rgba(var(--c-tuerkis-rgb), 0.12);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1.5rem 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--c-body);
}
.checkbox-field input {
  margin-top: 0.2rem;
  width: 18px; height: 18px;
  accent-color: var(--c-tuerkis);
  flex-shrink: 0;
}
.checkbox-field a { color: var(--c-tuerkis); text-decoration: underline; }
.form-feedback {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  display: none;
}
.form-feedback.is-success {
  display: block;
  background: rgba(var(--c-tuerkis-rgb), 0.1);
  color: var(--c-tuerkis-dark);
  border: 1px solid rgba(var(--c-tuerkis-rgb), 0.3);
}

/* ========================================================================
   FOOTER
   ======================================================================== */
.footer {
  background: var(--c-ink);
  color: rgba(255, 255, 255, 0.72);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.footer__logo {
  font-family: var(--font-head);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1rem;
  display: block;
}
.footer__col p { font-size: 0.92rem; line-height: 1.6; color: rgba(255, 255, 255, 0.6); }
.footer__col h4 {
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col a { font-size: 0.92rem; color: rgba(255, 255, 255, 0.7); transition: color 0.2s; }
.footer__col a:hover { color: var(--c-tuerkis); }

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer__bottom a { color: rgba(255, 255, 255, 0.6); margin-left: 1.25rem; }
.footer__bottom a:hover { color: #fff; }

/* ========================================================================
   SEITEN: Impressum / Datenschutz
   ======================================================================== */
.page-hero {
  background: var(--c-navy-deep);
  color: #fff;
  padding: 10rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 400px at 50% 100%, rgba(var(--c-tuerkis-rgb), 0.18), transparent 65%);
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: #fff;
  
  position: relative;
}
.page-hero p { color: rgba(255, 255, 255, 0.7); max-width: 600px; margin-top: 1rem; position: relative; }

.legal-content { background: var(--c-creme); padding: clamp(3rem, 6vw, 5rem) 0; }
.legal-content .container > div { max-width: 820px; }
.legal-content h2 {
  font-size: 1.45rem;
  margin: 2.5rem 0 1rem;
  color: var(--c-ink);
}
.legal-content p, .legal-content li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--c-body);
  margin-bottom: 0.75rem;
}
.legal-content ul { padding-left: 1.25rem; }
.legal-content a { color: var(--c-tuerkis); text-decoration: underline; }

/* ========================================================================
   RESPONSIVE
   ======================================================================== */
@media (max-width: 1024px) {
  .hero { min-height: auto; padding: 7rem 0 3rem; }
  .hero__media { width: 52%; }
  .hero__media-fade {
    background:
      linear-gradient(to right,
        var(--c-navy-deep) 0%,
        rgba(0, 26, 51, 0.97) 25%,
        rgba(0, 26, 51, 0.7) 55%,
        rgba(0, 26, 51, 0.2) 100%);
  }
  .problems__grid { grid-template-columns: repeat(2, 1fr); }
  .problems__card--wide { grid-column: span 2; }
  .leistungen__grid { grid-template-columns: 1fr; }
  .leistung { min-height: auto; }
  .fallstudien__grid { grid-template-columns: 1fr 1fr; }
  .case--hero { grid-row: span 1; grid-column: span 2; }
  .ablauf__timeline { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
  .ablauf__timeline::before { display: none; }
  .methode__layout { grid-template-columns: 1fr; }
  .methode__visual { position: relative; top: 0; max-height: 60vh; }
  .about__grid { grid-template-columns: 1fr; }
  .about__image { max-width: 480px; margin: 0 auto; }
  .kontakt__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .nav__links { display: none; }
  .nav__burger { display: block; }
  .nav.is-open .nav__links {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--c-navy-deep);
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    align-items: flex-start;
    z-index: 150;
  }
  .nav.is-open .nav__links a { font-size: 1.5rem; color: #fff; }
  .nav.is-open .nav__cta { display: inline-block; margin-top: 1rem; }
}

@media (max-width: 768px) {
  .hero { padding: 6rem 0 2.5rem; min-height: auto; }
  .hero__media { width: 100%; opacity: 0.35; }
  .hero__media-img { object-position: 60% 20%; }
  .hero__media-fade {
    background:
      linear-gradient(to bottom,
        rgba(0, 26, 51, 0.55) 0%,
        rgba(0, 26, 51, 0.85) 60%,
        var(--c-navy-deep) 100%);
  }
  .hero__grid { max-width: 100%; }
  .hero__content { max-width: 100%; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .problems__grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .problems__card--wide { grid-column: span 1; }
  .fallstudien__grid { grid-template-columns: 1fr; }
  .case--hero { grid-column: span 1; }
  .ablauf__timeline { grid-template-columns: 1fr; }
  .about__credentials { grid-template-columns: 1fr; gap: 1rem; }
  .field-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .footer__bottom > div:last-child a:first-child { margin-left: 0; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .nav__logo-mark { width: 32px; height: 32px; font-size: 0.78rem; }
  .nav__logo { font-size: 1.1rem; }
}

/* --- Reduced Motion ---------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal--stagger > * { opacity: 1; transform: none; }
  .trust-ticker__track { animation: none; }
}
