/* ==========================================================================
   NG Fitness & Health — v2 Stylesheet (Claude-Design-Export Port)
   Tokens + Components. Alle Klassen mit `ng-` Prefix namespaced.
   ========================================================================== */

/* Lokale Schriftarten — DSGVO-konform, keine Verbindung zu Google */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('/fonts/inter-var.woff2') format('woff2-variations');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/space-grotesk-var.woff2') format('woff2-variations');
}

/* -- 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);

  --accent: var(--c-tuerkis);

  --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; scroll-padding-top: 80px; }
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;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; cursor: pointer; }
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; }

.ng-accent { color: var(--c-tuerkis); font-weight: inherit; font-style: normal; }

/* ─ Logo (inline SVG, skaliert perfekt) ───────────────────────────── */
.ng-logo { display: block; width: auto; height: 64px; }
.ng-logo__mark {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 120px;
  letter-spacing: -4px;
  text-anchor: middle;
  fill: currentColor;
  dominant-baseline: auto;
}
.ng-logo__sub {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 2.5px;
  text-anchor: middle;
  fill: var(--c-tuerkis);
}
.ng-container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }

.ng-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;
}
.ng-kicker::before { content: ''; width: 28px; height: 1px; background: currentColor; }

/* -- Buttons ---------------------------------------------------------- */
.ng-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;
  min-height: 48px;
  transition: transform 0.4s var(--ease), background 0.3s, color 0.3s, box-shadow 0.4s var(--ease);
}
.ng-btn-primary {
  background: var(--c-navy);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 49, 92, 0.25);
}
.ng-btn-primary:hover { background: var(--c-tuerkis); transform: translateY(-2px); }
.ng-btn-light { background: #fff; color: var(--c-navy); }
.ng-btn-light:hover { background: var(--c-tuerkis); color: #fff; transform: translateY(-2px); }
.ng-btn-ghost-dark {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.ng-btn-ghost-dark:hover { background: rgba(255, 255, 255, 0.08); transform: translateY(-2px); }
.ng-btn-arrow { display: inline-block; transition: transform 0.4s var(--ease); }
.ng-btn:hover .ng-btn-arrow { transform: translateX(4px); }

/* -- Nav -------------------------------------------------------------- */
.ng-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  background: rgba(0, 26, 51, 0.35);
  backdrop-filter: saturate(1.2) blur(14px);
  -webkit-backdrop-filter: saturate(1.2) blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  transition: background 0.35s var(--ease), padding 0.35s var(--ease), border-color 0.35s var(--ease);
}
.ng-nav.is-scrolled {
  background: rgba(0, 26, 51, 0.94);
  padding: 0.7rem 0;
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 26, 51, 0.3);
}
.ng-nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.ng-nav__logo {
  display: inline-flex;
  align-items: center;
  color: #fff;
}
.ng-nav__logo .ng-logo {
  height: 68px;
  transition: height 0.35s var(--ease);
}
.ng-nav.is-scrolled .ng-nav__logo .ng-logo { height: 54px; }
.ng-nav__links { display: flex; align-items: center; gap: 2.25rem; list-style: none; }
.ng-nav__links a { color: rgba(255, 255, 255, 0.82); font-size: 0.92rem; font-weight: 500; transition: color 0.2s; }
.ng-nav__links a:hover { color: #fff; }
.ng-nav__cta {
  background: var(--c-tuerkis);
  color: #fff !important;
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.2s;
}
.ng-nav__cta:hover { background: var(--c-tuerkis-dark); }
.ng-nav__burger { display: none; background: none; border: none; color: #fff; cursor: pointer; padding: 0.5rem; }
.ng-nav__burger svg { width: 26px; height: 26px; stroke: currentColor; stroke-width: 2; }

/* -- Hero ------------------------------------------------------------- */
.ng-hero {
  position: relative;
  min-height: 78vh;
  background: var(--c-navy-deep);
  color: #fff;
  overflow: hidden;
  padding: 7rem 0 4rem;
  display: flex;
  align-items: center;
}
.ng-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 700px at 8% 45%, rgba(var(--c-tuerkis-rgb), 0.06), transparent 70%);
  z-index: 1;
}
.ng-hero > .ng-container { position: relative; z-index: 3; width: 100%; }
.ng-hero__grid { max-width: 780px; }
.ng-hero__content { max-width: 720px; }
.ng-hero__media {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 68%;
  z-index: 2;
  overflow: hidden;
  background: var(--c-navy-deep);
}
.ng-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 35% 88%;
  filter: saturate(1) contrast(1.06);
  mask-image: linear-gradient(to right, transparent 0%, #000 22%, #000 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 22%, #000 100%);
}
/* Original, weicher Fade — plus Bild-Maske links verhindert sichtbare Kante */
.ng-hero__media-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      var(--c-navy-deep) 0%,
      rgba(0, 26, 51, 0.96) 8%,
      rgba(0, 26, 51, 0.82) 18%,
      rgba(0, 26, 51, 0.58) 30%,
      rgba(0, 26, 51, 0.32) 42%,
      rgba(0, 26, 51, 0.14) 56%,
      rgba(0, 26, 51, 0.04) 72%,
      rgba(0, 26, 51, 0) 100%),
    linear-gradient(to bottom,
      rgba(0, 26, 51, 0.15) 0%,
      transparent 20%,
      transparent 80%,
      rgba(0, 26, 51, 0.25) 100%);
  pointer-events: none;
}
.ng-hero__kicker { margin-bottom: 2rem; color: var(--c-tuerkis); }
.ng-hero__title {
  font-size: clamp(2.25rem, 4.5vw, 3.8rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.ng-hero__lead {
  font-size: 1.1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 2rem;
  max-width: 480px;
}
.ng-hero__checks { list-style: none; margin-bottom: 2.5rem; display: flex; flex-direction: column; gap: 0.85rem; }
.ng-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;
}
.ng-hero__checks svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--c-tuerkis); margin-top: 0.15rem; }
.ng-hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* -- Generic section heads ------------------------------------------- */
.ng-section { padding: clamp(4rem, 8vw, 7rem) 0; }
.ng-section-head { max-width: 780px; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.ng-section-head h2 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); margin: 1rem 0; }
.ng-section-head p { font-size: 1.1rem; color: var(--c-body); max-width: 640px; line-height: 1.6; }

/* -- Probleme --------------------------------------------------------- */
.ng-problems { background: var(--c-creme); }
.ng-problems__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.ng-problems__card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  border: 1px solid var(--c-hairline);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.5s var(--ease), box-shadow 0.5s, border-color 0.5s;
}
.ng-problems__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.ng-problems__card--wide {
  grid-column: span 2;
  background: var(--c-navy);
  color: #fff;
  border: none;
  position: relative;
  overflow: hidden;
}
.ng-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%);
}
.ng-problems__card--wide p, .ng-problems__card--wide h3, .ng-problems__card--wide .ng-problems__num { position: relative; z-index: 1; }
.ng-problems__card--wide p { color: rgba(255, 255, 255, 0.82); }
.ng-problems__card--wide h3 { color: #fff; }
.ng-problems__num { font-family: var(--font-head); font-size: 0.9rem; color: var(--c-tuerkis); font-weight: 500; }
.ng-problems__card h3 { font-size: 1.3rem; font-weight: 500; line-height: 1.25; }
.ng-problems__card p { color: var(--c-body); font-size: 0.95rem; line-height: 1.55; }

/* -- Leistungen ------------------------------------------------------- */
.ng-leistungen { background: var(--c-creme-2); }
.ng-leistungen__grid { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 1rem; }
.ng-leistung {
  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;
}
.ng-leistung:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ng-leistung__image { aspect-ratio: 4/3; overflow: hidden; background: var(--c-stone); }
.ng-leistung__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); filter: saturate(0.98) contrast(1.04); }
.ng-leistung:hover .ng-leistung__image img { transform: scale(1.05); }
.ng-leistung__body { padding: 2rem; flex: 1; display: flex; flex-direction: column; gap: 1rem; }
.ng-leistung__tag {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-tuerkis);
}
.ng-leistung h3 { font-size: 1.6rem; font-weight: 500; }
.ng-leistung p { color: var(--c-body); font-size: 0.98rem; line-height: 1.55; }
.ng-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);
}
.ng-leistung__features li { display: flex; align-items: baseline; gap: 0.6rem; font-size: 0.9rem; color: var(--c-ink); }
.ng-leistung__features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--c-tuerkis);
  border-radius: 50%;
  flex-shrink: 0;
  transform: translateY(-2px);
}
.ng-leistung--featured { background: var(--c-navy); color: #fff; position: relative; overflow: hidden; }
.ng-leistung--featured::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(var(--c-tuerkis-rgb), 0.28), transparent 60%);
  pointer-events: none;
}
.ng-leistung--featured .ng-leistung__body { position: relative; z-index: 1; }
.ng-leistung--featured h3 { color: #fff; }
.ng-leistung--featured p { color: rgba(255, 255, 255, 0.8); }
.ng-leistung--featured .ng-leistung__features { border-color: rgba(255, 255, 255, 0.15); }
.ng-leistung--featured .ng-leistung__features li { color: rgba(255, 255, 255, 0.92); }

/* -- Methode ---------------------------------------------------------- */
.ng-methode {
  background: var(--c-ink);
  color: #fff;
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}
.ng-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;
}
/* Subtiles Dot-Pattern — Methode = strukturiert, analytisch */
.ng-methode::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}
.ng-methode > * { position: relative; z-index: 1; }
.ng-methode .ng-section-head { text-align: center; margin-left: auto; margin-right: auto; }
.ng-methode__cta { text-align: center; margin-top: clamp(2.5rem, 5vw, 4rem); }
.ng-methode .ng-section-head h2 { color: #fff; }
.ng-methode .ng-section-head p { color: rgba(255, 255, 255, 0.7); margin-left: auto; margin-right: auto; }
.ng-methode .ng-section-head .ng-kicker { justify-content: center; }
/* Methode — alternierende Pillar-Rows: jeder Pillar mit eigenem Bild auf gleicher Hoehe */
.ng-methode__pillars {
  display: flex;
  flex-direction: column;
  gap: clamp(4rem, 8vw, 7rem);
  position: relative;
}
.ng-pillar-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.ng-pillar-row--img-left .ng-pillar-img { order: 1; }
.ng-pillar-row--img-left .ng-pillar-text { order: 2; }
.ng-pillar-row--img-right .ng-pillar-img { order: 2; }
.ng-pillar-row--img-right .ng-pillar-text { order: 1; }

.ng-pillar-text {
  position: relative;
  padding-left: 4.5rem;
}
.ng-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;
}
.ng-pillar__num::after {
  content: '';
  position: absolute;
  left: 0;
  top: calc(100% + 0.5rem);
  width: 32px;
  height: 1px;
  background: var(--c-tuerkis);
}
.ng-pillar-text h3 { font-size: clamp(1.7rem, 2.6vw, 2.3rem); color: #fff; font-weight: 600; margin-bottom: 1rem; line-height: 1.15; letter-spacing: -0.02em; }
.ng-pillar-text p { color: rgba(255, 255, 255, 0.78); font-size: 1.02rem; line-height: 1.65; margin-bottom: 1rem; }
.ng-pillar__facts {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.ng-pillar__facts li {
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
  padding-left: 1.1rem;
  position: relative;
  letter-spacing: -.005em;
}
.ng-pillar__facts li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-tuerkis);
}

/* Bild-Container mit Parallax-Effekt */
.ng-pillar-img {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}
.ng-pillar-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  transform: translate3d(0, calc(-10% + var(--py, 0%)), 0);
  will-change: transform;
}
.ng-pillar-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}

/* -- Fallstudien ------------------------------------------------------ */
.ng-fallstudien { background: var(--c-creme); }
.ng-fallstudien__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}
.ng-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, box-shadow 0.5s;
}
.ng-case:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ng-case--hero { grid-row: span 2; background: var(--c-navy); color: #fff; border: none; position: relative; }
.ng-case--hero::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -20%;
  width: 70%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(var(--c-tuerkis-rgb), 0.22), transparent 60%);
  pointer-events: none;
}
.ng-case--hero .ng-case__body { position: relative; z-index: 1; }
.ng-case--hero h3, .ng-case--hero blockquote { color: #fff; }
.ng-case--hero p, .ng-case--hero .ng-case__meta { color: rgba(255, 255, 255, 0.72); }
.ng-case__image { aspect-ratio: 16/10; overflow: hidden; background: var(--c-stone); }
.ng-case--hero .ng-case__image { aspect-ratio: 4/3; }
.ng-case__image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.98) contrast(1.04); }
.ng-case__body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; gap: 0.85rem; }
.ng-case__meta { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-muted); font-weight: 600; }
.ng-case h3 { font-size: 1.25rem; font-weight: 500; line-height: 1.25; }
.ng-case--hero h3 { font-size: 1.85rem; }
.ng-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;
}
.ng-case--hero blockquote { color: #fff; }
.ng-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; }
.ng-case--hero .ng-case__result { color: var(--c-tuerkis); border-top-color: rgba(255, 255, 255, 0.15); }

/* -- Ablauf ----------------------------------------------------------- */
.ng-ablauf { background: #fff; }
.ng-ablauf__timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
  padding-top: 2rem;
}
.ng-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);
}
.ng-step { position: relative; padding-top: 3rem; }
.ng-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);
}
.ng-step:hover .ng-step__dot { background: var(--c-navy); color: var(--c-tuerkis); transform: scale(1.08); }
.ng-step h3 { font-size: 1.15rem; font-weight: 500; margin-bottom: 0.6rem; }
.ng-step p { font-size: 0.92rem; line-height: 1.55; color: var(--c-body); }

/* -- Über Nick -------------------------------------------------------- */
.ng-about {
  background: var(--c-creme-2);
  position: relative;
  overflow: hidden;
}
/* Subtiler Linien-Pattern — fast unsichtbar, gibt der Section Tiefe */
.ng-about::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, transparent 0, transparent 80px, rgba(0,49,92,0.018) 80px, rgba(0,49,92,0.018) 81px);
  pointer-events: none;
  z-index: 0;
}
.ng-about > * { position: relative; z-index: 1; }
.ng-about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.ng-about__image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.ng-about__image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.98) contrast(1.04); }
.ng-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);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.ng-about__badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--c-tuerkis);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(var(--c-tuerkis-rgb), 0.6);
  animation: ng-pulse 2s ease-in-out infinite;
}
@keyframes ng-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(var(--c-tuerkis-rgb), 0.6); }
  50% { box-shadow: 0 0 0 10px rgba(var(--c-tuerkis-rgb), 0); }
}
.ng-about__content h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1.5rem; }
.ng-about__content p { font-size: 1.05rem; line-height: 1.7; margin-bottom: 1.25rem; color: var(--c-body); }
.ng-about__content p strong { color: var(--c-ink); font-weight: 600; }
.ng-about__credentials {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--c-hairline);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ng-about__credentials 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;
}
.ng-about__credentials strong {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--c-ink);
  line-height: 1.3;
  display: block;
}

/* -- FAQ -------------------------------------------------------------- */
.ng-faq { background: var(--c-creme); }
.ng-faq__wrap { max-width: 860px; margin-inline: auto; }
.ng-faq__item { border-bottom: 1px solid var(--c-hairline); }
.ng-faq__item:first-child { border-top: 1px solid var(--c-hairline); }
.ng-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;
}
.ng-faq__trigger:hover { color: var(--c-tuerkis); }
.ng-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, color 0.3s;
  color: var(--c-ink);
}
.ng-faq__icon::before, .ng-faq__icon::after {
  content: '';
  position: absolute;
  background: currentColor;
}
.ng-faq__icon::before { width: 12px; height: 1.5px; }
.ng-faq__icon::after { width: 1.5px; height: 12px; transition: transform 0.4s var(--ease); }
.ng-faq__item.is-open .ng-faq__icon { background: var(--c-navy); border-color: var(--c-navy); color: #fff; }
.ng-faq__item.is-open .ng-faq__icon::after { transform: scaleY(0); }
/* FAQ smooth grid-rows animation — gilt beim Auf- UND Zuklappen */
.ng-faq__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease);
}
.ng-faq__body > p {
  overflow: hidden;
  padding: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--c-body);
  max-width: 720px;
  min-height: 0;
  transition: padding 0.45s var(--ease);
}
.ng-faq__item.is-open .ng-faq__body { grid-template-rows: 1fr; }
.ng-faq__item.is-open .ng-faq__body > p { padding: 0 0 1.75rem 0; }

/* -- Kontakt (eigenbau — nicht im Design-Export) --------------------- */
.ng-kontakt { background: var(--c-creme-2); }
.ng-kontakt__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.ng-kontakt__info { display: flex; flex-direction: column; gap: 1.5rem; }
.ng-kontakt__info h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 1rem 0; }
.ng-kontakt__info p { color: var(--c-body); line-height: 1.6; }
.ng-kontakt__details { display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }
.ng-kontakt__detail { display: flex; align-items: flex-start; gap: 0.85rem; font-size: 0.98rem; color: var(--c-ink); }
.ng-kontakt__detail svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--c-tuerkis); margin-top: 0.15rem; }
.ng-kontakt__detail strong { display: block; font-family: var(--font-head); font-weight: 500; color: var(--c-ink); margin-bottom: 0.1rem; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--c-tuerkis); }
.ng-kontakt__detail a { color: var(--c-ink); transition: color 0.2s; }
.ng-kontakt__detail a:hover { color: var(--c-tuerkis); }
.ng-kontakt__form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border: 1px solid var(--c-hairline);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ng-field { display: flex; flex-direction: column; gap: 0.4rem; }
.ng-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-ink);
  letter-spacing: 0.02em;
}
.ng-field input, .ng-field textarea {
  font: inherit;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-hairline);
  background: var(--c-creme);
  color: var(--c-ink);
  transition: border-color 0.2s, background 0.2s;
}
.ng-field input:focus, .ng-field textarea:focus {
  outline: none;
  border-color: var(--c-tuerkis);
  background: #fff;
}
.ng-field textarea { resize: vertical; min-height: 120px; }
.ng-kontakt__form button { margin-top: 0.5rem; width: 100%; justify-content: center; }
.ng-kontakt__note { font-size: 0.82rem; color: var(--c-muted); line-height: 1.5; }

/* -- Final CTA -------------------------------------------------------- */
.ng-cta-final {
  background: var(--c-navy-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.ng-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);
}
.ng-cta-final__wrap { position: relative; text-align: center; max-width: 820px; margin-inline: auto; }
.ng-cta-final__wrap .ng-kicker { justify-content: center; margin-bottom: 1rem; }
.ng-cta-final h2 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); color: #fff; margin-bottom: 1.5rem; }
.ng-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; }
.ng-cta-final__actions { display: inline-flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* -- Footer ----------------------------------------------------------- */
.ng-footer {
  background: var(--c-ink);
  color: rgba(255, 255, 255, 0.72);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}
.ng-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
.ng-footer__logo { display: block; margin-bottom: 1.25rem; color: #fff; }
.ng-footer__logo .ng-logo { height: 84px; }
.ng-footer p { font-size: 0.92rem; line-height: 1.6; color: rgba(255, 255, 255, 0.6); }
.ng-footer h4 { color: #fff; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; margin-bottom: 1.25rem; }
.ng-footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.ng-footer a { font-size: 0.92rem; color: rgba(255, 255, 255, 0.7); transition: color 0.2s; }
.ng-footer a:hover { color: var(--c-tuerkis); }
.ng-footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}
.ng-footer__bottom a { margin-left: 1.25rem; }

/* -- Scroll-Reveal ---------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* -- Responsive ------------------------------------------------------- */
@media (max-width: 1024px) {
  .ng-problems__grid { grid-template-columns: repeat(2, 1fr); }
  .ng-problems__card--wide { grid-column: span 2; }
  .ng-leistungen__grid { grid-template-columns: 1fr; }
  .ng-leistung { min-height: auto; }
  .ng-fallstudien__grid { grid-template-columns: 1fr 1fr; }
  .ng-case--hero { grid-row: span 1; grid-column: span 2; }
  .ng-ablauf__timeline { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
  .ng-ablauf__timeline::before { display: none; }
  .ng-methode__layout { grid-template-columns: 1fr; }
  .ng-methode__visual { position: relative; top: 0; max-height: 60vh; }
  .ng-pillar-row { grid-template-columns: 1fr; gap: 1.75rem; }
  .ng-pillar-row--img-left .ng-pillar-img { order: 1; }
  .ng-pillar-row--img-left .ng-pillar-text { order: 2; }
  .ng-pillar-row--img-right .ng-pillar-img { order: 1; }
  .ng-pillar-row--img-right .ng-pillar-text { order: 2; }
  .ng-pillar-img { aspect-ratio: 16/10; max-height: 50vh; }
  .ng-pillar-text { padding-left: 0; padding-top: 3.2rem; }
  .ng-pillar__facts { grid-template-columns: 1fr; gap: 0.6rem; }
  .ng-about__grid { grid-template-columns: 1fr; }
  .ng-kontakt__grid { grid-template-columns: 1fr; }
  .ng-footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .ng-hero__media { width: 55%; opacity: 0.5; }
}

@media (max-width: 720px) {
  .ng-nav__links { display: none; }
  .ng-nav__links.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 26, 51, 0.98);
    backdrop-filter: saturate(1.2) blur(14px);
    -webkit-backdrop-filter: saturate(1.2) blur(14px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.5rem 0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  }
  .ng-nav__links.is-open li { width: 100%; }
  .ng-nav__links.is-open a {
    display: block;
    padding: 0.95rem 1.5rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .ng-nav__links.is-open li:last-child a { border-bottom: none; }
  .ng-nav__burger { display: grid; place-items: center; }
  .ng-nav { padding: 0.7rem 0; }
  .ng-nav__logo .ng-logo { height: 48px; }
  .ng-nav.is-scrolled .ng-nav__logo .ng-logo { height: 42px; }

  /* Hero — gestapelt: Bild oben, Text darunter */
  .ng-hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    padding: 0;
    padding-top: 76px;
  }
  .ng-hero::before { display: none; }
  .ng-hero__media {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    max-height: 50vh;
    opacity: 1;
    order: 1;
    overflow: hidden;
  }
  .ng-hero__media img {
    mask-image: none;
    -webkit-mask-image: none;
    object-position: 65% 78%;
    transform: scale(1.25);
    transform-origin: 65% 92%;
  }
  .ng-hero__media-fade {
    background: linear-gradient(to bottom,
      transparent 0%, transparent 60%,
      rgba(0, 26, 51, 0.55) 85%, var(--c-navy-deep) 100%);
  }
  .ng-hero > .ng-container {
    order: 2;
    padding-top: 1.5rem;
    padding-bottom: 2.25rem;
  }
  .ng-hero__title { font-size: 1.6rem; line-height: 1.15; margin-bottom: 0.85rem; }
  .ng-hero__lead { font-size: 0.92rem; margin-bottom: 1.25rem; }
  .ng-hero__kicker { margin-bottom: 1rem; font-size: 0.68rem; }
  .ng-hero__checks { margin-bottom: 1.5rem; gap: 0.6rem; }
  .ng-hero__checks li { font-size: 0.86rem; line-height: 1.4; }
  .ng-hero__checks svg { width: 16px; height: 16px; }
  .ng-problems__grid, .ng-fallstudien__grid, .ng-footer__grid, .ng-ablauf__timeline { grid-template-columns: 1fr; }
  .ng-problems__card--wide, .ng-case--hero { grid-column: span 1; }
  .ng-about__credentials { grid-template-columns: 1fr; }
  .ng-cta-final__actions { flex-direction: column; align-items: stretch; }
  .ng-cta-final__actions .ng-btn { justify-content: center; }
}

/* ═══════════ Designed-by-Pfeiffer-Digital Footer-Badge ═══════════ */
.pd-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  white-space: nowrap;
  opacity: .8;
  transition: opacity .25s ease;
}
.pd-badge:hover { opacity: 1; }
.pd-badge__logo {
  height: 22px;
  width: auto;
  filter: brightness(0) invert(1);
}
