/* ===================================================
   minnovativ.de — Styles v2
   Design: "Bold Precision"
   =================================================== */

/* === Figtree Variable Font === */
@font-face {
  font-family: 'Figtree';
  src: url('../branding/Figtree/Figtree-VariableFont_wght.ttf') format('truetype');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Figtree';
  src: url('../branding/Figtree/Figtree-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 300 900;
  font-style: italic;
  font-display: swap;
}

/* === CSS Variables === */
:root {
  --navy-dark:  #1A2535;
  --navy:       #27374F;
  --navy-mid:   #2D4260;
  --gold:       #DFA437;
  --gold-light: #F0BC5E;
  --cream:      #F9EDD7;
  --cream-dark: #EDD9B5;
  --bg-light:   #F7FAFC;
  --white:      #FFFFFF;
  --text:       #2E3A4E;
  --text-light: #FFFFFF;
  --muted:      #6B7A90;
  --border:     rgba(39, 55, 79, 0.1);

  --font:       'Figtree', system-ui, sans-serif;

  --max:        1160px;
  --pad-x:      clamp(20px, 5vw, 60px);
  --pad-y:      clamp(72px, 9vw, 128px);
  --radius:     16px;
  --radius-lg:  28px;

  --shadow-sm:  0 2px 12px rgba(26,37,53,0.08);
  --shadow-md:  0 8px 36px rgba(26,37,53,0.14);
  --shadow-lg:  0 24px 72px rgba(26,37,53,0.20);
  --shadow-gold: 0 8px 32px rgba(223,164,55,0.40);

  --ease:       0.3s ease;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* === Container === */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* === Scroll Reveal === */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }

/* === Section Base === */
section { padding: var(--pad-y) 0; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.12;
  margin-bottom: 18px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 580px;
  margin-bottom: 56px;
  line-height: 1.7;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(223,164,55,0.55);
  background: var(--gold-light);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }
.btn-lg { padding: 18px 44px; font-size: 1rem; font-weight: 800; }
.btn-white {
  background: var(--white);
  color: var(--navy-dark);
  font-weight: 800;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.25); }

/* =====================================================
   NAV
   ===================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 0;
  transition: padding var(--ease), background var(--ease), box-shadow var(--ease);
}
.nav.scrolled {
  padding: 12px 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(39,55,79,0.1), var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
/* Logo for dark hero background */
.nav-logo .logo-dark { display: block; }
.nav-logo .logo-light { display: none; }
.nav.hero-nav:not(.scrolled) .logo-dark { display: none; }
.nav.hero-nav:not(.scrolled) .logo-light { display: block; }

.nav-logo img { height: 32px; width: auto; transition: height var(--ease); }
.nav.scrolled .nav-logo img { height: 26px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
/* Nav links on dark hero: white */
.nav.hero-nav:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.85); }
.nav.hero-nav:not(.scrolled) .nav-links a:hover { color: var(--gold); }
.nav-links a {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy);
  letter-spacing: 0.01em;
  transition: color var(--ease);
}
.nav-links a:hover { color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  transition: var(--ease);
  transform-origin: center;
}
.nav.hero-nav:not(.scrolled) .nav-toggle span { background: var(--white); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================
   HERO — Dark, Dramatic
   ===================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 96px;
  padding-bottom: 120px;
  background: var(--navy-dark);
  background-size: 400% 400%;
  animation: heroGradient 14s ease infinite;
  position: relative;
  overflow: hidden;
}

@keyframes heroGradient {
  0%   { background-position: 0% 50%;   background: linear-gradient(135deg, #141E2B 0%, #1E2D3F 50%, #27374F 100%); }
  50%  { background-position: 100% 50%; background: linear-gradient(135deg, #1E2D3F 0%, #27374F 50%, #1E3050 100%); }
  100% { background-position: 0% 50%;   background: linear-gradient(135deg, #141E2B 0%, #1E2D3F 50%, #27374F 100%); }
}

/* Grain texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
  z-index: 0;
}

/* Decorative glow blobs */
.hero::after {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(223,164,55,0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero-blob {
  position: absolute;
  bottom: -100px; left: -100px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(39,55,79,0.6) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: center;
}

/* Hero diagonal bottom break */
.hero-divider {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 90px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 2;
}

.hero-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.1s;
}
.hero h1 {
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.06;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.25s;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(0.97rem, 1.4vw, 1.1rem);
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.75;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.4s;
}
.hero-sub strong { color: var(--gold-light); font-weight: 600; }
.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.55s;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}
.trust-item::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.7s;
}

/* Hero image */
.hero-img-wrap {
  position: relative;
  opacity: 0;
  animation: fadeIn 1s ease forwards 0.4s;
}
.hero-img-bg {
  position: absolute;
  inset: -20px;
  background: linear-gradient(135deg, rgba(223,164,55,0.2) 0%, rgba(249,237,215,0.15) 100%);
  border-radius: calc(var(--radius-lg) + 10px);
  z-index: 0;
}
.hero-img-wrap img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(223,164,55,0.15);
}
.hero-badge {
  position: absolute;
  bottom: -16px; left: -16px;
  z-index: 2;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 18px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-gold);
  min-width: 130px;
}
.hero-badge-num {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
}
.hero-badge-text {
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 4px;
  opacity: 0.75;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =====================================================
   MARQUEE STRIP
   ===================================================== */
.marquee-strip {
  background: var(--gold);
  padding: 18px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 32px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-dark);
  white-space: nowrap;
}
.marquee-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--navy-dark);
  opacity: 0.4;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =====================================================
   STATUS QUO — White
   ===================================================== */
.status-quo { background: var(--white); }

.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 52px;
}
.problem-card {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(223,164,55,0.3);
}
.problem-icon { width: 44px; height: 44px; margin-bottom: 18px; color: var(--gold); }
.problem-icon svg { width: 100%; height: 100%; }
.problem-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.problem-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

.vision-box {
  background: var(--navy-dark);
  color: var(--white);
  padding: 52px;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.vision-box::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(223,164,55,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.vision-icon { width: 52px; height: 52px; opacity: 0.85; position: relative; color: var(--gold); flex-shrink: 0; }
.vision-icon svg { width: 100%; height: 100%; }
.vision-box p { font-size: 1.15rem; line-height: 1.7; opacity: 0.88; position: relative; }
.vision-box p strong { color: var(--gold-light); font-weight: 700; }

/* =====================================================
   METHODE — Cream
   ===================================================== */
.methode { background: var(--cream); }
.methode-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.methode-principles { display: flex; flex-direction: column; gap: 40px; }
.principle { display: flex; gap: 22px; }
.principle-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--cream-dark);
  line-height: 1;
  flex-shrink: 0;
  user-select: none;
  min-width: 56px;
  letter-spacing: -0.04em;
}
.principle h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 7px;
}
.principle p { font-size: 0.93rem; color: var(--text); line-height: 1.7; }

.methode-visual {
  background: var(--navy-dark);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.methode-visual::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(223,164,55,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.methode-visual .quote-mark {
  font-size: 5rem;
  color: var(--gold);
  line-height: 0.8;
  margin-bottom: 20px;
  opacity: 0.7;
  font-style: italic;
  position: relative;
}
.methode-visual blockquote {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 700;
  line-height: 1.6;
  position: relative;
}
.methode-visual blockquote span {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.methode-visual cite {
  display: block;
  margin-top: 22px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
}

/* =====================================================
   4 SÄULEN — Navy
   ===================================================== */
.saeulen {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.saeulen::after {
  content: '';
  position: absolute;
  bottom: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(223,164,55,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.saeulen .section-title { color: var(--white); }
.saeulen .section-sub { color: rgba(255,255,255,0.55); }

.saeulen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.saeule-card {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 44px;
  transition: background var(--ease), transform var(--ease), border-color var(--ease);
  position: relative;
  overflow: hidden;
}
.saeule-card::before {
  content: attr(data-num);
  position: absolute;
  top: -20px; right: 16px;
  font-size: 7rem;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.04em;
}
.saeule-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(223,164,55,0.25);
  transform: translateY(-5px);
}
.saeule-num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.saeule-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
}
.saeule-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 18px;
  line-height: 1.7;
}
.saeule-focus {
  font-size: 0.78rem;
  color: var(--gold);
  font-style: italic;
  font-weight: 600;
  opacity: 0.8;
}

/* =====================================================
   3 SCHRITTE — White
   ===================================================== */
.schritte { background: var(--white); }
.schritte-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}
.schritte-connector {
  position: absolute;
  top: 32px;
  left: calc(16.66% + 28px);
  right: calc(16.66% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(223,164,55,0.3));
}
.schritt { text-align: center; padding: 0 32px; position: relative; z-index: 1; }
.schritt-dot {
  width: 64px; height: 64px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  box-shadow: var(--shadow-gold);
  transition: transform var(--ease), box-shadow var(--ease);
}
.schritt:hover .schritt-dot {
  transform: scale(1.12);
  box-shadow: 0 12px 40px rgba(223,164,55,0.55);
}
.schritt h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.schritt p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

/* =====================================================
   TRANSFORMATION — Off-white
   ===================================================== */
.transformation { background: var(--bg-light); }
.transform-table {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.transform-header { display: grid; grid-template-columns: 1fr 1fr; }
.transform-header div {
  padding: 20px 36px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.col-without { background: #E9EDF2; color: var(--muted); }
.col-with { background: var(--navy-dark); color: var(--gold); }
.transform-row { display: grid; grid-template-columns: 1fr 1fr; }
.transform-row:nth-child(even) .cell-without { background: var(--white); }
.transform-row:nth-child(even) .cell-with { background: rgba(39,55,79,0.03); }
.transform-row:nth-child(odd) .cell-without { background: #F3F5F8; }
.transform-row:nth-child(odd) .cell-with { background: rgba(249,237,215,0.4); }
.cell {
  padding: 24px 36px;
  font-size: 0.9rem;
  line-height: 1.65;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-bottom: 1px solid var(--border);
}
.cell-without { color: var(--muted); }
.cell-without::before {
  content: '✗';
  color: #C0392B;
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 800;
  margin-top: 3px;
}
.cell-with { color: var(--navy); font-weight: 500; }
.cell-with::before {
  content: '✓';
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 800;
  margin-top: 3px;
}

/* =====================================================
   ÜBER TIMON — White
   ===================================================== */
.ueber { background: var(--white); }
.ueber-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 88px;
  align-items: center;
}
.ueber-img-wrap {
  position: relative;
  flex-shrink: 0;
}
.ueber-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 72%; height: 72%;
  background: var(--cream);
  border-radius: var(--radius-lg);
  z-index: 0;
}
.ueber-img-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-lg);
}
.ueber-content .section-title { margin-bottom: 20px; }
.ueber-content p { margin-bottom: 20px; color: var(--text); line-height: 1.75; }
.ueber-content p strong { color: var(--navy); font-weight: 700; }
.ueber-cert {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--bg-light);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.ueber-cert img { height: 56px; width: auto; }
.ueber-cert span { font-size: 0.875rem; color: var(--muted); line-height: 1.6; font-weight: 500; }

/* =====================================================
   TESTIMONIALS — Cream
   ===================================================== */
.testimonials { background: var(--cream); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(39,55,79,0.07);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform var(--ease), box-shadow var(--ease);
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testimonial-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.testimonial-quote {
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  font-style: italic;
}
.testimonial-text {
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.testimonial-author img {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--cream);
  flex-shrink: 0;
}
.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.author-info strong {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--navy);
  display: block;
  margin-bottom: 2px;
}
.author-info span { font-size: 0.78rem; color: var(--muted); font-weight: 500; }

/* =====================================================
   FÜR WEN + FAQ — White
   ===================================================== */
.fuer-wen { background: var(--white); }
.fuer-wen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.targeting-list { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.targeting-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.97rem;
  line-height: 1.6;
  font-weight: 500;
}
.check-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(223,164,55,0.12);
  border: 2px solid var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--gold);
  font-weight: 800;
}

.faq-list { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--ease);
}
.faq-item.open { border-color: var(--gold); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font);
  font-size: 0.925rem;
  font-weight: 700;
  color: var(--navy);
  transition: background var(--ease);
}
.faq-question:hover { background: var(--bg-light); }
.faq-chevron {
  font-size: 1.1rem;
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 0.925rem;
  color: var(--muted);
  line-height: 1.8;
}

/* =====================================================
   CTA — Dark Navy
   ===================================================== */
.cta-section {
  background: var(--navy-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(223,164,55,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section .section-label { color: var(--gold); }
.cta-section .section-title { color: var(--white); max-width: 700px; margin: 0 auto 20px; }
.cta-section .section-sub { color: rgba(255,255,255,0.6); max-width: 540px; margin: 0 auto 48px; }
.cta-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
}
.cta-contact-item { font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.cta-contact-item a { color: var(--gold); font-weight: 700; transition: opacity var(--ease); }
.cta-contact-item a:hover { opacity: 0.75; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer { background: #111822; padding: 40px 0; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo img { height: 26px; width: auto; opacity: 0.7; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.4); font-weight: 500; transition: color var(--ease); }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.28); }

/* =====================================================
   FLOATING CONTACT BUTTON
   ===================================================== */
.float-cta {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 90;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  box-shadow: var(--shadow-gold);
  transition: transform var(--ease), box-shadow var(--ease), opacity var(--ease);
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  text-decoration: none;
}
.float-cta.visible {
  opacity: 1;
  pointer-events: auto;
}
.float-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(223,164,55,0.55);
}
.float-cta-icon {
  width: 18px; height: 18px;
  flex-shrink: 0;
}

/* =====================================================
   LEGAL PAGES
   ===================================================== */
.legal-page { padding-top: 120px; padding-bottom: 80px; min-height: 100vh; }
.legal-content h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.legal-date { font-size: 0.85rem; color: var(--muted); margin-bottom: 52px; font-weight: 500; }
.legal-content h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin: 40px 0 10px;
}
.legal-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 24px 0 8px;
}
.legal-content h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin: 18px 0 6px;
}
.legal-content p { color: var(--text); margin-bottom: 14px; font-size: 0.93rem; line-height: 1.8; }
.legal-content ul { padding-left: 20px; margin-bottom: 14px; list-style: disc; }
.legal-content ul li { font-size: 0.93rem; color: var(--text); margin-bottom: 6px; line-height: 1.7; }
.legal-content a { color: var(--gold); text-decoration: underline; }
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 40px;
  transition: color var(--ease);
}
.legal-back:hover { color: var(--gold); }

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-img-wrap { max-width: 340px; margin: 0 auto; }
  .methode-grid { grid-template-columns: 1fr; gap: 48px; }
  .ueber-grid { grid-template-columns: 1fr; gap: 52px; }
  .ueber-img-wrap { max-width: 280px; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    padding: 24px var(--pad-x);
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav.hero-nav:not(.scrolled) .nav-links { background: var(--navy); }
  .nav-toggle { display: flex; }

  .problems-grid { grid-template-columns: 1fr; }
  .saeulen-grid { grid-template-columns: 1fr; }
  .schritte-list { grid-template-columns: 1fr; gap: 36px; }
  .schritte-connector { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .fuer-wen-grid { grid-template-columns: 1fr; gap: 48px; }

  .vision-box { grid-template-columns: 1fr; text-align: center; padding: 36px 28px; }
  .hero-cta { flex-direction: column; }
  .btn-lg { width: 100%; }
  .footer-inner { flex-direction: column; text-align: center; }
  .cell { padding: 16px 20px; font-size: 0.85rem; }
  .transform-header div { padding: 14px 20px; font-size: 0.72rem; }
  .float-cta { bottom: 20px; right: 20px; padding: 12px 20px; font-size: 0.8rem; }
}
