/* ============================================
   ALEXANDER SATTLER – BENTO DASHBOARD v4
   Design System: Card-Based Layout
   ============================================ */

/* ============================================
   1. DESIGN TOKENS
   ============================================ */

:root {
  /* Colors – Light Mode */
  --bg: #F8F7F4;
  --surface: #FFFFFF;
  --surface-alt: #EFEDE8;
  --surface-elevated: #FFFFFF;
  --text: #1C1C1C;
  --text-secondary: #4A4A4A;
  --text-muted: #6E6E6E;
  --accent: #FF2D7D;
  --accent-soft: #FFF0F5;
  --accent-hover: #E6286F;
  --border: #E8E6E1;
  --border-light: #F0EEE9;
  
  /* Typography */
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, -apple-system, sans-serif;
  
  /* Type Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.5rem;
  
  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-8: 3rem;
  --space-10: 4rem;
  --space-12: 5rem;
  --space-16: 8rem;
  
  /* Border Radius */
  --radius: 20px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.1);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;
  
  /* Grid */
  --grid-gap: 16px;
  --container-max: 1400px;
}

/* ============================================
   2. DARK MODE
   ============================================ */

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #121212;
    --surface: #1E1E1E;
    --surface-alt: #2A2A2A;
    --surface-elevated: #252525;
    --text: #F5F5F5;
    --text-secondary: #DDDDDD;
    --text-muted: #BBBBBB;
    --border: #333333;
    --border-light: #2A2A2A;
    --accent-soft: rgba(255, 45, 125, 0.15);
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.2);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.3);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.4);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.5);
  }
}

/* ============================================
   3. RESET & BASE
   ============================================ */

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

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  padding: 24px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 768px) {
  :root {
    /* Mobile: Alle Schriftgrößen eine Stufe größer */
    --text-xs: 0.875rem;    /* 14px statt 12px */
    --text-sm: 1rem;        /* 16px statt 14px */
    --text-base: 1.0625rem; /* 17px statt 16px */
    --text-lg: 1.125rem;    /* 18px - bleibt */
    --text-xl: 1.25rem;     /* 20px - bleibt */
  }
  body { padding: 12px; }
}

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

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

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

ul, ol {
  list-style: none;
}

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

/* ============================================
   4. TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

.text-gradient {
  background: linear-gradient(135deg, var(--accent) 0%, #FF6B9D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   5. BENTO GRID
   ============================================ */

.bento {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--grid-gap);
}

/* ============================================
   6. CARD BASE
   ============================================ */

.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: var(--space-6);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card__title {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-5);
}

/* ============================================
   7. HEADER CARD
   ============================================ */

.card--header {
  grid-column: span 12;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4) var(--space-6);
  background: transparent;
}

.card--header:hover {
  transform: none;
  box-shadow: none;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  color: var(--text);
}

.logo__icon {
  width: 32px;
  height: 26px;
  object-fit: contain;
  flex-shrink: 0;
  transition: opacity var(--transition-fast);
}

.logo:hover .logo__icon {
  opacity: 0.7;
}

.nav {
  display: flex;
  gap: var(--space-6);
  align-items: center;
}

.nav a {
  font-size: var(--text-sm);
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

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

.social-links {
  display: flex;
  gap: var(--space-3);
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border-radius: var(--radius-full);
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--accent);
  color: white;
  transform: scale(1.1);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all var(--transition-fast);
}

@media (max-width: 900px) {
  .nav-toggle { 
    display: flex; 
    z-index: 1001;
    position: relative;
  }
  
  /* Hamburger zu X Animation */
  .nav.is-open + .social-links ~ .nav-toggle span:nth-child(1),
  [aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  [aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  
  [aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-6);
    background: var(--bg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 999;
  }
  
  .nav.is-open {
    opacity: 1;
    visibility: visible;
  }
  
  .nav a { font-size: var(--text-2xl); }
}

/* ============================================
   8. HERO CARD
   ============================================ */

.card--hero {
  grid-column: span 8;
  grid-row: span 2;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-alt) 100%);
  position: relative;
}

/* Background Pattern - Transformation Discovery Compass only */
.card--hero::before {
  display: none;
}

/* Transformation Discovery Compass - groß und schräg */
.card--hero::after {
  content: '';
  position: absolute;
  bottom: -2rem;
  right: -1rem;
  width: 400px;
  height: 400px;
  background-image: url('images/compass-outline.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
  opacity: 0.06;
  transform: rotate(-15deg);
}

@media (prefers-color-scheme: dark) {
  .card--hero::after {
    opacity: 0.1;
    filter: invert(1);
  }
}

/* Mobile: Compass kleiner */
@media (max-width: 768px) {
  .card--hero::after {
    width: 200px;
    height: 200px;
    bottom: -1rem;
    right: -1rem;
    opacity: 0.05;
  }
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__label {
  display: inline-block;
  padding: 6px 14px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-5);
}

.hero__title {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  line-height: 1.05;
  margin-bottom: var(--space-4);
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 420px;
  margin-bottom: var(--space-4);
}

.hero__credentials {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-6);
  padding-left: var(--space-3);
  border-left: 2px solid var(--accent);
}

.hero__roles {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-6);
}

.hero__roles span {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.hero__roles span::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

.hero__cta {
  display: flex;
  gap: var(--space-3);
  position: relative;
  z-index: 1;
}

@media (max-width: 1200px) {
  .card--hero { grid-column: span 12; min-height: 400px; }
}

@media (max-width: 600px) {
  .card--hero { min-height: auto; padding: var(--space-5); }
}

/* ============================================
   9. PHOTO CARD
   ============================================ */

.card--photo {
  grid-column: span 4;
  grid-row: span 2;
  padding: 0;
  overflow: hidden;
  position: relative;
}

/* Pink gradient accent - always visible */
.card--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(255, 45, 125, 0.08) 0%,
    transparent 30%,
    transparent 70%,
    rgba(255, 45, 125, 0.12) 100%
  );
  z-index: 1;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}

.card--photo:hover::before {
  background: linear-gradient(
    145deg,
    rgba(255, 45, 125, 0.12) 0%,
    transparent 30%,
    transparent 70%,
    rgba(255, 45, 125, 0.18) 100%
  );
}

/* Decorative compass icon - always visible */
.card--photo::after {
  content: '';
  position: absolute;
  bottom: var(--space-4);
  right: var(--space-4);
  width: 48px;
  height: 48px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%23FF2D7D' stroke-width='2.5'%3E%3Ccircle cx='50' cy='50' r='40'/%3E%3Ccircle cx='50' cy='50' r='8'/%3E%3Cpath d='M50 10 L50 25 M50 75 L50 90 M10 50 L25 50 M75 50 L90 50'/%3E%3Cpath d='M50 25 L45 50 L50 55 L55 50 Z' fill='%23FF2D7D'/%3E%3C/svg%3E");
  background-size: contain;
  z-index: 2;
  opacity: 0.5;
  transition: all var(--transition-slow);
}

.card--photo:hover::after {
  opacity: 0.8;
  transform: scale(1.1);
}

.card--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform var(--transition-slow);
}

.card--photo:hover img {
  transform: scale(1.03);
}

@media (max-width: 1200px) {
  .card--photo { 
    grid-column: span 12; 
    height: 450px;
    order: -1;
  }
}

@media (max-width: 600px) {
  .card--photo { height: 350px; }
}

/* ============================================
   10. STAT CARDS
   ============================================ */

.card--stat {
  grid-column: span 3;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--space-4) var(--space-3);
  min-height: 110px;
}

.card--stat--accent {
  background: var(--text);
  color: var(--bg);
}

.card--stat--accent:hover {
  background: var(--accent);
}

.stat__number {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 400;
  line-height: 1;
  margin-bottom: var(--space-1);
}

.stat__label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
  text-align: center;
}

.card--stat--accent .stat__label {
  color: inherit;
  opacity: 0.8;
}

@media (max-width: 1200px) {
  .card--stat { grid-column: span 3; }
}

@media (max-width: 900px) {
  .card--stat { grid-column: span 4; }
}

@media (max-width: 600px) {
  .card--stat { grid-column: span 6; }
}

/* ============================================
   11. QUOTE CARD
   ============================================ */

.card--quote {
  grid-column: span 6;
  background: var(--text);
  color: var(--bg);
  display: flex;
  align-items: center;
  padding: var(--space-8);
}

.card--quote--small {
  grid-column: span 4;
  padding: var(--space-5);
  background: #252525;
  border-left: 4px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card--quote:hover {
  background: var(--text);
}

.card--quote--small:hover {
  background: #2d2d2d;
}

.quote {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-style: italic;
  line-height: 1.5;
  color: #fff;
}

.card--quote--small .quote {
  font-size: var(--text-base);
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 900px) {
  .card--quote,
  .card--quote--small { grid-column: span 12; }
}

/* ============================================
   11b. ROLLEN & MANDATE CARD
   ============================================ */

.card--rollen {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
}

.rollen__services {
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--border-light);
}

.rollen__intro {
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: var(--space-1);
}

.rollen__context {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.rollen__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.rollen__list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rollen__list strong {
  font-size: var(--text-sm);
  font-weight: 600;
}

.rollen__list span {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .card--rollen { grid-column: span 12; }
  .rollen__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
  }
}

@media (max-width: 600px) {
  .rollen__list {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   12. TERMINAL / WERDEGANG CARD
   ============================================ */

.card--terminal {
  grid-column: span 8;
  background: linear-gradient(135deg, #2a2a2a 0%, #353535 100%);
  color: #e0e0e0;
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  padding: var(--space-5);
}

.card--terminal .card__title {
  color: #888;
  margin-bottom: var(--space-4);
}

.card--terminal:hover {
  transform: none;
}

.terminal {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.terminal__line {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-xs);
  font-size: var(--text-sm);
  transition: background var(--transition-fast);
}

.terminal__line:hover {
  background: rgba(255, 255, 255, 0.05);
}

.terminal__line--highlight {
  background: rgba(255, 45, 125, 0.1);
  border-left: 2px solid var(--accent);
}

.terminal__line--highlight:hover {
  background: rgba(255, 45, 125, 0.15);
}

.terminal__year {
  color: var(--accent);
  font-weight: 600;
  min-width: 65px;
  flex-shrink: 0;
}

.terminal__arrow {
  color: #555;
  flex-shrink: 0;
}

.terminal__content {
  color: #e0e0e0;
}

.terminal__dim {
  color: #999;
  font-size: var(--text-xs);
  margin-left: var(--space-2);
}

@media (prefers-color-scheme: dark) {
  .card--terminal {
    background: linear-gradient(135deg, #2a2a2a 0%, #333333 100%);
  }
}

@media (max-width: 900px) {
  .card--terminal {
    grid-column: span 12;
  }
}

@media (max-width: 600px) {
  .card--terminal {
    padding: var(--space-4);
  }
  
  .terminal__line {
    flex-direction: column;
    gap: var(--space-1);
    padding: var(--space-3);
  }
  
  .terminal__year {
    min-width: auto;
  }
  
  .terminal__arrow {
    display: none;
  }
  
  .terminal__content {
    padding-left: 0;
  }
  
  .terminal__dim {
    display: block;
    margin-left: 0;
    margin-top: 2px;
  }
}

/* ============================================
   13. WHY-HOW-WHAT CARD
   ============================================ */

.card--whw {
  grid-column: span 6;
}

.whw-circles {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 260px;
  margin-bottom: var(--space-4);
}

.whw-circle {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
}

.whw-circle--what {
  width: 240px;
  height: 240px;
  background: var(--surface-alt);
  z-index: 1;
}

.whw-circle--how {
  width: 160px;
  height: 160px;
  background: var(--border);
  z-index: 2;
}

.whw-circle--why {
  width: 90px;
  height: 90px;
  background: var(--text);
  color: var(--bg);
  z-index: 3;
}

.whw-circle:hover {
  transform: scale(1.08);
  box-shadow: var(--shadow-lg);
}

.whw-circle--why:hover {
  background: var(--accent);
}

.whw-circle__label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.whw-text {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--text-muted);
  min-height: 60px;
  padding: 0 var(--space-4);
}

.whw-text__item {
  display: none;
}

.whw-text__item.is-active {
  display: block;
}

.whw-text__default {
  font-style: italic;
}

@media (max-width: 900px) {
  .card--whw { grid-column: span 12; }
}

/* ============================================
   14. SECTION TITLE CARD
   ============================================ */

.card--section-title {
  grid-column: span 12;
  background: transparent;
  padding: var(--space-12) 0 var(--space-5);
  text-align: center;
}

.card--section-title:hover {
  transform: none;
  box-shadow: none;
}

.section-title {
  font-family: var(--font-serif);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-2);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: var(--text-base);
}

/* ============================================
   15. WIRKFELD CARDS
   ============================================ */

.card--wirkfeld {
  grid-column: span 4;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}

/* Icon Background Pattern */
.card--wirkfeld::before {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.04;
  transition: opacity var(--transition-slow), transform var(--transition-slow);
  z-index: 0;
}

.card--wirkfeld:hover::before {
  opacity: 0.08;
  transform: scale(1.1);
}

.card--wirkfeld > * {
  position: relative;
  z-index: 1;
}

/* Featured: Pink Elephants */
.card--wirkfeld--featured {
  grid-column: span 8;
  background: linear-gradient(135deg, #FFB3C6 0%, #FFD6E0 100%);
  color: var(--text-primary);
}

.card--wirkfeld--featured::before {
  opacity: 0.12;
  width: 180px;
  height: 180px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 85'%3E%3Cpath fill='%23FF2D7D' d='M95 30 C95 10, 70 0, 50 5 C25 10, 5 30, 5 55 C5 70, 15 80, 25 85 L35 75 C25 65, 25 50, 35 40 C42 33, 55 33, 62 40 C68 47, 70 55, 68 62 L75 55 C85 45, 95 40, 95 30 Z M195 30 C195 10, 170 0, 150 5 C125 10, 105 30, 105 55 C105 70, 115 80, 125 85 L135 75 C125 65, 125 50, 135 40 C142 33, 155 33, 162 40 C168 47, 170 55, 168 62 L175 55 C185 45, 195 40, 195 30 Z'/%3E%3Ccircle fill='%23FF2D7D' cx='62' cy='35' r='5'/%3E%3Ccircle fill='%23FF2D7D' cx='162' cy='35' r='5'/%3E%3C/svg%3E");
}

.card--wirkfeld--featured:hover {
  box-shadow: 0 15px 40px rgba(255, 45, 125, 0.15);
}

.card--wirkfeld--featured:hover::before {
  opacity: 0.18;
}

/* Highlight: Trainings */
.card--wirkfeld--highlight {
  background: linear-gradient(135deg, var(--surface) 0%, var(--accent-soft) 100%);
  border: 1px solid rgba(255, 45, 125, 0.2);
}

.card--wirkfeld--highlight::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='%23FF2D7D'%3E%3Crect x='10' y='20' width='60' height='45' rx='3'/%3E%3Crect x='15' y='65' width='50' height='5'/%3E%3Ccircle cx='75' cy='75' r='15'/%3E%3Cpath d='M72 70 v10 M77 70 v10 M72 75 h5'/%3E%3C/svg%3E");
}

.card--wirkfeld--highlight:hover {
  border-color: var(--accent);
}

/* Entscheidungen: Blau-grau */
.card--wirkfeld--decisions {
  background: linear-gradient(135deg, var(--surface) 0%, #E8EEF2 100%);
}

.card--wirkfeld--decisions::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='%234A6B7C'%3E%3Cpath d='M50 10 L50 40 M30 50 L70 50 M25 55 L25 80 L45 80 L45 55 Z M55 55 L55 80 L75 80 L75 55 Z M50 40 L25 55 M50 40 L75 55'/%3E%3Ccircle cx='50' cy='10' r='8'/%3E%3C/svg%3E");
}

/* Geschäftsmodell: Grün-soft */
.card--wirkfeld--business {
  background: linear-gradient(135deg, var(--surface) 0%, #E8F2E8 100%);
}

.card--wirkfeld--business::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='%234A7C4A'%3E%3Crect x='10' y='10' width='35' height='35' rx='4'/%3E%3Crect x='55' y='10' width='35' height='35' rx='4'/%3E%3Crect x='10' y='55' width='35' height='35' rx='4'/%3E%3Crect x='55' y='55' width='35' height='35' rx='4'/%3E%3C/svg%3E");
}

/* Nachfolge: Warm-beige */
.card--wirkfeld--succession {
  background: linear-gradient(135deg, var(--surface) 0%, #F2EDE8 100%);
}

.card--wirkfeld--succession::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='%238B7355'%3E%3Cpath d='M20 50 Q35 30 50 50 Q65 70 80 50' stroke='%238B7355' stroke-width='6' fill='none'/%3E%3Ccircle cx='20' cy='50' r='10'/%3E%3Ccircle cx='80' cy='50' r='10'/%3E%3Cpath d='M70 45 L80 50 L70 55' stroke='%238B7355' stroke-width='3' fill='none'/%3E%3C/svg%3E");
}

/* Beirat: Anthrazit-soft */
.card--wirkfeld--advisory {
  background: linear-gradient(135deg, var(--surface) 0%, #EAEAEA 100%);
}

.card--wirkfeld--advisory::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%23555' stroke-width='3'%3E%3Ccircle cx='50' cy='50' r='35'/%3E%3Ccircle cx='50' cy='50' r='20'/%3E%3Cpath d='M50 15 L50 30 M50 70 L50 85 M15 50 L30 50 M70 50 L85 50'/%3E%3Cpath d='M50 35 L55 50 L50 48 L45 50 Z' fill='%23555'/%3E%3C/svg%3E");
}

/* Dark Mode für Wirkfeld Cards */
@media (prefers-color-scheme: dark) {
  /* Hintergrund-Icons fast unsichtbar */
  .card--wirkfeld::before {
    opacity: 0.02;
  }
  
  .card--wirkfeld:hover::before {
    opacity: 0.04;
  }
  
  /* Solide dunkle Hintergründe ohne Gradients */
  .card--wirkfeld--highlight,
  .card--wirkfeld--decisions,
  .card--wirkfeld--business,
  .card--wirkfeld--succession,
  .card--wirkfeld--advisory {
    background: #1E1E1E;
    border: 1px solid rgba(255, 255, 255, 0.15);
  }
  
  .card--wirkfeld--highlight {
    border-color: rgba(255, 45, 125, 0.3);
  }
  
  .card--wirkfeld--highlight:hover,
  .card--wirkfeld--decisions:hover,
  .card--wirkfeld--business:hover,
  .card--wirkfeld--succession:hover,
  .card--wirkfeld--advisory:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: #252525;
  }
  
  /* Badges heller */
  .card--wirkfeld--highlight .wirkfeld__badge,
  .card--wirkfeld--decisions .wirkfeld__badge,
  .card--wirkfeld--business .wirkfeld__badge,
  .card--wirkfeld--succession .wirkfeld__badge,
  .card--wirkfeld--advisory .wirkfeld__badge {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
  }
  
  /* Titel weiß */
  .card--wirkfeld--highlight .wirkfeld__content h3,
  .card--wirkfeld--decisions .wirkfeld__content h3,
  .card--wirkfeld--business .wirkfeld__content h3,
  .card--wirkfeld--succession .wirkfeld__content h3,
  .card--wirkfeld--advisory .wirkfeld__content h3 {
    color: #fff;
  }
  
  /* Texte hell */
  .card--wirkfeld--highlight .wirkfeld__content p,
  .card--wirkfeld--decisions .wirkfeld__content p,
  .card--wirkfeld--business .wirkfeld__content p,
  .card--wirkfeld--succession .wirkfeld__content p,
  .card--wirkfeld--advisory .wirkfeld__content p {
    color: rgba(255, 255, 255, 0.85);
  }
  
  /* "Für:" und "Angebot:" Labels weiß */
  .card--wirkfeld--highlight .wirkfeld__content p strong,
  .card--wirkfeld--decisions .wirkfeld__content p strong,
  .card--wirkfeld--business .wirkfeld__content p strong,
  .card--wirkfeld--succession .wirkfeld__content p strong,
  .card--wirkfeld--advisory .wirkfeld__content p strong {
    color: #fff;
  }
  
  /* Links heller */
  .card--wirkfeld--highlight .wirkfeld__link,
  .card--wirkfeld--decisions .wirkfeld__link,
  .card--wirkfeld--business .wirkfeld__link,
  .card--wirkfeld--succession .wirkfeld__link,
  .card--wirkfeld--advisory .wirkfeld__link {
    color: rgba(255, 255, 255, 0.8);
  }
  
  .card--wirkfeld--highlight:hover .wirkfeld__link,
  .card--wirkfeld--decisions:hover .wirkfeld__link,
  .card--wirkfeld--business:hover .wirkfeld__link,
  .card--wirkfeld--succession:hover .wirkfeld__link,
  .card--wirkfeld--advisory:hover .wirkfeld__link {
    color: var(--accent);
  }
}

.wirkfeld__external {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  font-size: var(--text-xs);
  color: var(--text-muted);
  opacity: 0;
  transition: opacity var(--transition-fast);
  z-index: 2;
}

.card--wirkfeld:hover .wirkfeld__external {
  opacity: 1;
}

.card--wirkfeld--featured .wirkfeld__external {
  color: var(--text-tertiary);
}

.wirkfeld__badge {
  display: inline-block;
  padding: 5px 12px;
  background: var(--surface-alt);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
}

.card--wirkfeld--featured .wirkfeld__badge {
  background: rgba(255,45,125,0.15);
  color: var(--accent);
}

.wirkfeld__content h3 {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.wirkfeld__content p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-2);
}

.wirkfeld__content p strong {
  color: var(--text);
  font-weight: 600;
}

.card--wirkfeld--featured .wirkfeld__content p {
  color: var(--text-secondary);
}

.card--wirkfeld--featured .wirkfeld__content p strong {
  color: var(--text-primary);
}

.wirkfeld__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-secondary);
  margin-top: auto;
  padding-top: var(--space-4);
  transition: color var(--transition-fast);
}

.card--wirkfeld:hover .wirkfeld__link {
  color: var(--accent);
}

.card--wirkfeld--featured .wirkfeld__link {
  color: var(--text-secondary);
}

.card--wirkfeld--featured:hover .wirkfeld__link {
  color: var(--accent);
}

@media (max-width: 1200px) {
  .card--wirkfeld { grid-column: span 6; }
  .card--wirkfeld--featured { grid-column: span 12; }
}

@media (max-width: 768px) {
  .card--wirkfeld { grid-column: span 12; min-height: 200px; }
  
  /* Mobile: Rollen & Mandate vor Pink Elephants */
  .card--rollen-hub {
    order: -1;
  }
}

/* ============================================
   16. TESTIMONIAL CARDS
   ============================================ */

.card--testimonial {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
}

.testimonial__quote {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-4);
  flex: 1;
  
  /* Truncate */
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card--testimonial.is-expanded .testimonial__quote {
  -webkit-line-clamp: unset;
}

.testimonial__toggle {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-bottom: var(--space-4);
  cursor: pointer;
  transition: color var(--transition-fast);
}

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

.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-light);
  margin-top: auto;
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-alt);
  border-radius: 50%;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-muted);
}

.testimonial__info h4 {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 600;
}

.testimonial__info p {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

@media (max-width: 1200px) {
  .card--testimonial { grid-column: span 6; }
}

@media (max-width: 768px) {
  .card--testimonial { grid-column: span 12; }
}

/* ============================================
   17. AUSBILDUNGEN CARD
   ============================================ */

.card--ausbildungen {
  grid-column: span 12;
  background: var(--surface-alt);
}

.ausbildungen__intro {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: var(--space-5);
}

.ausbildungen__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.ausbildung-tag {
  padding: var(--space-2) var(--space-4);
  background: var(--surface);
  border-radius: var(--radius-xs);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.ausbildung-tag:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.ausbildung-tag em {
  font-style: normal;
  color: var(--text-muted);
  font-size: var(--text-xs);
}

/* ============================================
   17b. NOT-FOR CARD
   ============================================ */

.card--notfor {
  grid-column: span 4;
  background: var(--surface);
  border-left: 3px solid var(--accent);
  position: relative;
  overflow: visible;
}

.notfor__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.notfor__list li {
  font-size: var(--text-sm);
  color: var(--text-muted);
  padding-left: var(--space-3);
  position: relative;
}

.notfor__list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
  font-size: var(--text-xs);
}

@media (max-width: 900px) {
  .card--notfor { grid-column: span 6; }
}

@media (max-width: 600px) {
  .card--notfor { grid-column: span 12; }
}

/* ============================================
   17c. PROCESS CARD
   ============================================ */

.card--process {
  grid-column: span 4;
  background: var(--surface);
}

.process__steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.process__step {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.process__number {
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: 600;
  flex-shrink: 0;
}

.process__text {
  font-size: var(--text-sm);
}

.process__arrow {
  display: none;
}

@media (max-width: 900px) {
  .card--process { grid-column: span 6; }
}

@media (max-width: 600px) {
  .card--process { grid-column: span 12; }
}

/* ============================================
   17d. RECOMMEND CARD
   ============================================ */

.card--recommend {
  grid-column: span 4;
  background: var(--surface-alt);
  padding: var(--space-4);
}

.card--recommend .card__title {
  font-size: var(--text-sm);
  margin-bottom: var(--space-2);
}

.recommend__text {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-bottom: var(--space-3);
}

.recommend__buttons {
  display: flex;
  gap: var(--space-2);
}

.recommend__buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-xs);
  padding: var(--space-2) var(--space-3);
}

@media (max-width: 900px) {
  .card--recommend { grid-column: span 6; }
}

@media (max-width: 600px) {
  .card--recommend { grid-column: span 12; }
}

/* ============================================
   18. CONTACT CARD
   ============================================ */

.card--contact {
  grid-column: span 12;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  padding: var(--space-10);
  background: var(--surface);
}

.card--contact:hover {
  transform: none;
}

.contact__info h2 {
  font-family: var(--font-serif);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-3);
}

.contact__info > p {
  color: var(--text-muted);
  margin-bottom: var(--space-6);
}

.contact__alternatives h4 {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-4);
}

.contact__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.contact__link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--text);
  transition: color var(--transition-fast);
}

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

.contact__link svg {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* Form */
.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form__input,
.form__textarea {
  padding: var(--space-4);
  font-family: inherit;
  font-size: var(--text-base);
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: border-color var(--transition-fast);
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--text-muted);
}

.form__textarea {
  min-height: 120px;
  resize: vertical;
}

.form__honeypot {
  position: absolute;
  left: -9999px;
}

.form__submit {
  align-self: flex-start;
  margin-top: var(--space-2);
}

@media (max-width: 900px) {
  .card--contact {
    grid-template-columns: 1fr;
    padding: var(--space-6);
  }
}

/* ============================================
   19. BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  cursor: pointer;
}

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

.btn--primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.btn--secondary {
  background: var(--surface-alt);
  color: var(--text);
}

.btn--secondary:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Focus States */
.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ============================================
   20. FOOTER CARD
   ============================================ */

.card--footer {
  grid-column: span 12;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-5) var(--space-6);
  background: transparent;
}

.card--footer:hover {
  transform: none;
  box-shadow: none;
}

.footer__links {
  display: flex;
  gap: var(--space-5);
}

.footer__links a {
  font-size: var(--text-sm);
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

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

.footer__copy {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.footer__copy a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

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

@media (max-width: 768px) {
  .card--footer {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }
}

/* ============================================
   21. UTILITIES
   ============================================ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   22. PRINT STYLES
   ============================================ */

@media print {
  body { padding: 0; background: white; }
  .card { box-shadow: none; border: 1px solid #ddd; }
  .card--header, .card--footer, .hero__cta { display: none; }
}

/* ============================================
   25. EXIT INTENT OVERLAY
   ============================================ */

.exit-intent {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
}

.exit-intent[hidden] {
  display: none;
}

.exit-intent__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.exit-intent__modal {
  position: relative;
  background: var(--surface);
  padding: var(--space-8);
  border-radius: var(--radius-md);
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.exit-intent__close {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  background: none;
  border: none;
  font-size: var(--text-2xl);
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  padding: var(--space-2);
}

.exit-intent__close:hover {
  color: var(--text);
}

.exit-intent__modal h3 {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

.exit-intent__modal p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-4);
}

.exit-intent__form {
  display: flex;
  gap: var(--space-2);
}

.exit-intent__form input {
  flex: 1;
  padding: var(--space-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
}

.exit-intent__form input:focus {
  outline: none;
  border-color: var(--accent);
}

.exit-intent__note {
  font-size: var(--text-xs) !important;
  margin-top: var(--space-3) !important;
  margin-bottom: 0 !important;
}

/* ============================================
   26. LINKEDIN WELCOME BANNER
   ============================================ */

.linkedin-welcome {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--accent) 0%, #FF6B9D 100%);
  color: white;
  text-align: center;
  padding: var(--space-3);
  font-size: var(--text-sm);
  font-weight: 500;
  z-index: 100;
  animation: slideDown 0.5s ease;
}

.linkedin-welcome[hidden] {
  display: none;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.linkedin-welcome ~ .bento {
  padding-top: calc(var(--space-4) + 44px);
}

/* ============================================
   27. SIMPLE PAGES (FAQ, Glossar, etc.)
   ============================================ */

.page-simple {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-6) var(--space-4);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-simple__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--border-light);
}

.page-simple__content {
  flex: 1;
}

.page-simple__content h1 {
  font-family: var(--font-serif);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
}

.page-simple__footer {
  margin-top: var(--space-8);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.page-simple__footer nav {
  display: flex;
  gap: var(--space-4);
}

.page-simple__footer a {
  color: var(--text-muted);
}

.page-simple__footer a:hover {
  color: var(--accent);
}

/* FAQ Styles */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  background: var(--surface);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  padding: var(--space-4);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

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

.faq-question::after {
  content: '+';
  font-size: var(--text-xl);
  color: var(--accent);
  transition: transform var(--transition-fast);
}

.faq-item[open] .faq-question::after {
  content: '−';
}

.faq-answer {
  padding: 0 var(--space-4) var(--space-4);
  color: var(--text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
}

.faq-answer p,
.faq-answer ul,
.faq-answer ol {
  margin-bottom: var(--space-3);
}

.faq-answer p:last-child,
.faq-answer ul:last-child,
.faq-answer ol:last-child {
  margin-bottom: 0;
}

/* Glossar Styles */
.glossar-intro {
  font-size: var(--text-lg);
  color: var(--text-muted);
  margin-bottom: var(--space-8);
}

.glossar-section {
  margin-bottom: var(--space-8);
}

.glossar-section h2 {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
  color: var(--accent);
}

.glossar-section-intro {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-4);
  font-style: italic;
}

.glossar-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.glossar-item {
  background: var(--surface);
  padding: var(--space-4);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent);
}

.glossar-item dt {
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.glossar-item dd {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 600px) {
  .page-simple__header {
    flex-direction: column;
    gap: var(--space-3);
    align-items: flex-start;
  }
  
  .page-simple__footer {
    flex-direction: column;
    gap: var(--space-3);
    text-align: center;
  }
}

/* ============================================
   28. SKIP LINK (Accessibility)
   ============================================ */

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  padding: var(--space-3) var(--space-4);
  background: var(--text);
  color: var(--bg);
  z-index: 9999;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: var(--space-4);
}

/* ============================================
   29. COOKIE BANNER
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: var(--space-4);
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.cookie-banner__content p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin: 0;
}

.cookie-banner__content a {
  color: var(--accent);
}

.cookie-banner__buttons {
  display: flex;
  gap: var(--space-2);
}

@media (max-width: 600px) {
  .cookie-banner__content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner__buttons {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   30. BREADCRUMBS
   ============================================ */

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-bottom: var(--space-4);
}

.breadcrumbs a {
  color: var(--text-muted);
}

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

.breadcrumbs__separator {
  color: var(--border);
}

/* ============================================
   31. PRINT STYLES
   ============================================ */

@media print {
  /* Hide non-essential elements */
  .card--header,
  .card--footer,
  .cookie-banner,
  .exit-intent,
  .linkedin-welcome,
  .skip-link,
  .btn,
  .nav,
  .contact__alternatives,
  .form,
  .card--notfor,
  .card--process,
  .card--recommend {
    display: none !important;
  }
  
  /* Reset backgrounds */
  body,
  .bento,
  .card {
    background: white !important;
    color: black !important;
  }
  
  /* Remove shadows and borders */
  .card {
    box-shadow: none !important;
    border: 1px solid #ddd !important;
    break-inside: avoid;
  }
  
  /* Ensure text is readable */
  .card__title,
  .hero__name,
  h1, h2, h3 {
    color: black !important;
  }
  
  .hero__label,
  .terminal__dim,
  .text-muted {
    color: #666 !important;
  }
  
  /* Show URLs for links */
  a[href^="http"]:after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #666;
  }
  
  /* Page layout */
  .bento {
    display: block !important;
    padding: 0 !important;
  }
  
  .card {
    page-break-inside: avoid;
    margin-bottom: 1rem;
  }
  
  /* Improve photo printing */
  .card--photo img {
    max-height: 300px;
    object-fit: contain;
  }
}

/* ================================================
   GLOSSAR NEW DESIGN (strategischer-beirat.de Style)
   ================================================ */

.glossar-page-new {
  min-height: 100vh;
  background: #fff;
}

.glossar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.glossar-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

.glossar-hero {
  margin-bottom: 2.5rem;
}

.glossar-badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #FF2D7D;
  margin-bottom: 0.75rem;
}

.glossar-hero h1 {
  font-size: var(--text-4xl);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.glossar-subtitle {
  font-size: var(--text-lg);
  color: #444;
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.glossar-intro {
  font-size: var(--text-base);
  color: #555;
  max-width: 700px;
  line-height: 1.6;
}

/* Filter Tabs */
.glossar-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.glossar-tab {
  padding: 0.5rem 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  color: #555;
  font-size: var(--text-sm);
  cursor: pointer;
  transition: all 0.2s;
}

.glossar-tab:hover {
  border-color: #FF2D7D;
  color: #FF2D7D;
}

.glossar-tab.active {
  background: #FF2D7D;
  border-color: #FF2D7D;
  color: #fff;
}

/* Section Header */
.glossar-section {
  margin-bottom: 4rem;
}

.glossar-section-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #eee;
}

.glossar-section-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: #FF2D7D;
  color: #fff;
  font-size: var(--text-lg);
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}

.glossar-section-header h2 {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.25rem 0;
}

.glossar-section-subtitle {
  font-size: var(--text-sm);
  color: #666;
  margin: 0;
}

/* Leitfrage */
.glossar-leitfrage {
  background: linear-gradient(135deg, #fff5f8 0%, #fff 100%);
  border-left: 4px solid #FF2D7D;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  border-radius: 0 8px 8px 0;
}

.glossar-leitfrage strong {
  color: #FF2D7D;
}

.glossar-leitfrage em {
  color: #333;
  font-style: italic;
}

/* Card Grid */
.glossar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .glossar-grid {
    grid-template-columns: 1fr;
  }
}

/* Glossar Card */
.glossar-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.2s;
}

.glossar-card:hover {
  border-color: #ddd;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.glossar-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.75rem 0;
}

.glossar-card > p {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: #444;
  margin: 0 0 1rem 0;
}

.glossar-card__question {
  background: #f8f8f8;
  border-radius: 8px;
  padding: 0.875rem 1rem;
  margin-bottom: 0.75rem;
}

.glossar-card__question span {
  color: #FF2D7D;
  font-weight: 600;
  margin-right: 0.25rem;
}

.glossar-card__question em {
  color: #333;
  font-style: italic;
  font-size: var(--text-sm);
}

.glossar-card__source {
  font-size: var(--text-xs);
  color: #888;
  margin: 0;
}

/* Footer */
.glossar-footer {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid #eee;
  margin-top: 2rem;
}

.glossar-footer nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.glossar-footer nav a {
  color: #666;
  text-decoration: none;
  font-size: var(--text-sm);
}

.glossar-footer nav a:hover {
  color: #FF2D7D;
}

.glossar-footer p {
  color: #999;
  font-size: var(--text-xs);
  margin: 0;
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
  .glossar-page-new {
    background: #121212;
  }
  
  .glossar-hero h1 {
    color: #fff;
  }
  
  .glossar-subtitle,
  .glossar-intro {
    color: rgba(255,255,255,0.8);
  }
  
  .glossar-tab {
    background: #1a1a1a;
    border-color: #333;
    color: rgba(255,255,255,0.8);
  }
  
  .glossar-tab:hover {
    border-color: #FF5A8A;
    color: #FF5A8A;
  }
  
  .glossar-tab.active {
    background: #FF5A8A;
    border-color: #FF5A8A;
  }
  
  .glossar-section-header {
    border-bottom-color: #333;
  }
  
  .glossar-section-header h2 {
    color: #fff;
  }
  
  .glossar-section-subtitle {
    color: rgba(255,255,255,0.7);
  }
  
  .glossar-section-number {
    background: #FF5A8A;
  }
  
  .glossar-leitfrage {
    background: rgba(255,45,125,0.08);
    border-left-color: #FF5A8A;
  }
  
  .glossar-leitfrage strong {
    color: #FF5A8A;
  }
  
  .glossar-leitfrage em {
    color: rgba(255,255,255,0.9);
  }
  
  .glossar-card {
    background: #1E1E1E;
    border-color: rgba(255,255,255,0.1);
  }
  
  .glossar-card:hover {
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }
  
  .glossar-card h3 {
    color: #fff;
  }
  
  .glossar-card > p {
    color: rgba(255,255,255,0.85);
  }
  
  .glossar-card__question {
    background: rgba(255,255,255,0.05);
  }
  
  .glossar-card__question span {
    color: #FF5A8A;
  }
  
  .glossar-card__question em {
    color: rgba(255,255,255,0.9);
  }
  
  .glossar-card__source {
    color: rgba(255,255,255,0.5);
  }
  
  .glossar-footer {
    border-top-color: #333;
  }
  
  .glossar-footer nav a {
    color: rgba(255,255,255,0.6);
  }
  
  .glossar-footer nav a:hover {
    color: #FF5A8A;
  }
  
  .glossar-footer p {
    color: rgba(255,255,255,0.4);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .glossar-header {
    padding: 1rem;
  }
  
  .glossar-main {
    padding: 0 1rem 3rem;
  }
  
  .glossar-hero h1 {
    font-size: var(--text-3xl);
  }
  
  .glossar-tabs {
    gap: 0.375rem;
  }
  
  .glossar-tab {
    padding: 0.375rem 0.75rem;
    font-size: var(--text-xs);
  }
  
  .glossar-section-header {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .glossar-section-header h2 {
    font-size: var(--text-xl);
  }
  
  .glossar-card {
    padding: 1.25rem;
  }
}

/* ================================================
   BANNER & PHOTO OVERLAYS
   ================================================ */

/* Banner Card */
.card--banner {
  grid-column: 1 / -1;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 200px;
}

.card--banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}

.banner__overlay {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.banner__icon {
  width: 40px;
  height: auto;
  opacity: 0.9;
}

/* Photo Card Overlay */
.card--photo {
  position: relative;
}

.card--photo::after {
  content: '';
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.95) url('images/logo-elephant-pink.png') no-repeat center;
  background-size: 32px auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
  .card--banner img {
    filter: brightness(0.7);
  }
  
  .banner__overlay {
    background: rgba(30, 30, 30, 0.95);
  }
  
  .card--photo::after {
    background-color: rgba(30, 30, 30, 0.95);
  }
}

@media (max-width: 768px) {
  .card--banner {
    height: 150px;
  }
  
  .banner__overlay {
    bottom: 1rem;
    right: 1rem;
    padding: 0.5rem 0.75rem;
  }
  
  .banner__icon {
    width: 32px;
  }
}

/* ================================================
   HERO VALUE SECTION (Desktop rechts, Mobile unten)
   ================================================ */

.hero__value {
  display: block;
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 45, 125, 0.15);
}

.hero__value-headline {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.hero__value-subline {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
  font-style: italic;
}

@media (min-width: 769px) {
  .card--hero {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: 1fr auto;
    gap: 1.5rem;
  }
  
  .hero__content {
    grid-column: 1;
    grid-row: 1;
  }
  
  .hero__value {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    text-align: right;
    grid-column: 2;
    grid-row: 1;
    padding-left: 2rem;
    padding-top: 0;
    margin-top: 0;
    border-left: 2px solid rgba(255, 45, 125, 0.2);
    border-top: none;
  }
  
  .hero__value-title {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 0.75rem;
  }
  
  .hero__value-headline {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--accent);
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
  }
  
  .hero__value-subline {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
    max-width: 280px;
    font-style: italic;
  }
  
  .hero__value-roles {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
  }
  
  .hero__value-roles li {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    position: relative;
    padding-right: 1rem;
  }
  
  .hero__value-roles li::after {
    content: '→';
    position: absolute;
    right: 0;
    color: var(--accent);
    opacity: 0.5;
  }
  
  .hero__cta {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

/* ================================================
   WIRKFELD: COMPASS + WORK IN PROGRESS BADGE
   ================================================ */

.card--wirkfeld--compass {
  border-color: rgba(99, 102, 241, 0.3);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, transparent 100%);
}

.card--wirkfeld--compass:hover {
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.15);
}

.card--wirkfeld--compass .wirkfeld__badge {
  background: rgba(99, 102, 241, 0.15);
  color: #6366f1;
}

.wirkfeld__wip {
  position: absolute;
  top: 0.75rem;
  right: 3.5rem;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
  .card--wirkfeld--compass {
    border-color: rgba(99, 102, 241, 0.4);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, transparent 100%);
  }
  
  .card--wirkfeld--compass .wirkfeld__badge {
    background: rgba(99, 102, 241, 0.2);
    color: #818cf8;
  }
}

/* ================================================
   ROLLEN HUB: HERVORHEBUNG + PFEILE
   ================================================ */

.card--rollen-hub {
  position: relative;
  border: 2px solid var(--accent);
  background: linear-gradient(135deg, rgba(255, 45, 125, 0.03) 0%, transparent 100%);
}

.card--rollen-hub::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px dashed rgba(255, 45, 125, 0.3);
  border-radius: 20px;
  pointer-events: none;
}

.rollen__arrows {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.rollen__arrow {
  position: absolute;
  font-size: var(--text-lg);
  color: var(--accent);
  opacity: 0.4;
  transition: opacity 0.2s, transform 0.2s;
}

.card--rollen-hub:hover .rollen__arrow {
  opacity: 0.7;
}

.rollen__arrow--tl {
  top: 0.75rem;
  left: 0.75rem;
}

.rollen__arrow--tr {
  top: 0.75rem;
  right: 0.75rem;
}

.rollen__arrow--bl {
  bottom: 0.75rem;
  left: 0.75rem;
}

.rollen__arrow--br {
  bottom: 0.75rem;
  right: 0.75rem;
}

.card--rollen-hub:hover .rollen__arrow--tl { transform: translate(-2px, -2px); }
.card--rollen-hub:hover .rollen__arrow--tr { transform: translate(2px, -2px); }
.card--rollen-hub:hover .rollen__arrow--bl { transform: translate(-2px, 2px); }
.card--rollen-hub:hover .rollen__arrow--br { transform: translate(2px, 2px); }

/* Dark Mode */
@media (prefers-color-scheme: dark) {
  .card--rollen-hub {
    border-color: #FF5A8A;
    background: linear-gradient(135deg, rgba(255, 90, 138, 0.08) 0%, transparent 100%);
  }
  
  .card--rollen-hub::before {
    border-color: rgba(255, 90, 138, 0.3);
  }
  
  .rollen__arrow {
    color: #FF5A8A;
  }
}

/* Mobile: Pfeile ausblenden */
@media (max-width: 768px) {
  .rollen__arrows {
    display: none !important;
  }
  
  .card--rollen-hub::before {
    display: none;
  }
}

/* ================================================
   WIRKFELDER + ROLLEN LAYOUT (Desktop)
   ================================================ */

@media (min-width: 769px) {
  /* Alle Wirkfelder: 4 Spalten */
  .card--wirkfeld {
    grid-column: span 4;
  }
  
  /* Rollen in der Mitte: auch 4 Spalten */
  .card--rollen-hub {
    grid-column: span 4;
  }
  
  /* Letzte Reihe: Beirat + Compass je 6 Spalten */
  .card--wirkfeld--advisory {
    grid-column: span 6;
  }
  
  .card--wirkfeld--compass {
    grid-column: span 6;
  }
}

/* ================================================
   PROFIL SECTION (Story + Credentials)
   ================================================ */

.card--profil {
  grid-column: 1 / -1;
  padding: 2.5rem;
}

.profil__headline {
  font-size: var(--text-2xl);
  font-weight: 700;
  margin: 0 0 2rem 0;
  color: var(--text-primary);
}

.profil__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.profil__pillar {
  background: var(--surface-secondary);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}

.profil__pillar:hover {
  transform: translateY(-2px);
}

.profil__pillar--highlight {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(255, 45, 125, 0.05) 0%, transparent 100%);
}

.profil__pillar-title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin: 0 0 0.75rem 0;
  color: var(--text-primary);
}

.profil__pillar--highlight .profil__pillar-title {
  color: var(--accent);
}

.profil__pillar-text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.profil__bridge {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.profil__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.profil__tag {
  background: var(--surface-secondary);
  padding: 0.5rem 0.875rem;
  border-radius: 20px;
  font-size: var(--text-sm);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.profil__tag em {
  font-style: normal;
  color: var(--text-muted);
  font-size: var(--text-xs);
  margin-left: 0.25rem;
}

.profil__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.profil__credentials span {
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Mobile */
@media (max-width: 768px) {
  .card--profil {
    padding: 1.5rem;
  }
  
  .profil__headline {
    font-size: var(--text-xl);
  }
  
  .profil__pillars {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .profil__pillar {
    padding: 1.25rem;
  }
  
  .profil__credentials {
    gap: 1rem;
    justify-content: center;
  }
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
  .profil__pillar {
    background: rgba(255, 255, 255, 0.03);
  }
  
  .profil__pillar--highlight {
    background: linear-gradient(135deg, rgba(255, 90, 138, 0.1) 0%, transparent 100%);
    border-color: #FF5A8A;
  }
  
  .profil__pillar--highlight .profil__pillar-title {
    color: #FF5A8A;
  }
  
  .profil__tag {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
  }
}

/* ================================================
   COMPASS ICON STYLING
   ================================================ */

/* Compass icon in stat card */
.card--stat--compass {
  position: relative;
}

.stat__compass-icon {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 32px;
  height: 32px;
  opacity: 0.15;
  filter: invert(1);
}

@media (prefers-color-scheme: dark) {
  .stat__compass-icon {
    filter: invert(0);
    opacity: 0.2;
  }
}

/* Compass icon in wirkfeld card */
.wirkfeld__compass-icon {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  opacity: 0.1;
  filter: invert(1);
  transition: opacity 0.2s;
}

.card--wirkfeld--compass:hover .wirkfeld__compass-icon {
  opacity: 0.2;
}

@media (prefers-color-scheme: dark) {
  .wirkfeld__compass-icon {
    filter: invert(0);
    opacity: 0.15;
  }
  
  .card--wirkfeld--compass:hover .wirkfeld__compass-icon {
    opacity: 0.25;
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .stat__compass-icon {
    width: 24px;
    height: 24px;
  }
  
  .wirkfeld__compass-icon {
    width: 36px;
    height: 36px;
  }
}

/* ================================================
   WERDEGANG - Variante C (Flow/Story)
   ================================================ */

.card--werdegang {
  grid-column: span 12;
  padding: var(--space-6);
}

.werdegang__degree {
  font-size: var(--text-lg);
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  font-weight: 500;
}

.werdegang__phase {
  margin-bottom: var(--space-4);
}

.werdegang__phase-text {
  font-size: var(--text-base);
  color: var(--text-secondary);
  margin-bottom: var(--space-2);
  padding-left: var(--space-4);
  border-left: 2px solid var(--border);
}

.werdegang__phase-text strong {
  color: var(--text-primary);
}

.werdegang__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-left: var(--space-4);
  margin-bottom: var(--space-3);
}

.werdegang__tags--full {
  margin-left: 0;
  margin-bottom: var(--space-5);
  padding: var(--space-4);
  background: var(--surface-alt);
  border-radius: var(--radius-md);
}

.werdegang__tag {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  color: var(--text-tertiary);
}

.werdegang__reset {
  text-align: center;
  padding: var(--space-4) 0;
  margin: var(--space-5) 0;
  position: relative;
}

.werdegang__reset::before,
.werdegang__reset::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 35%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.werdegang__reset::before { left: 5%; }
.werdegang__reset::after { right: 5%; }

.werdegang__reset span {
  background: var(--surface);
  padding: 0 var(--space-4);
  color: var(--accent);
  font-weight: 600;
  font-size: var(--text-base);
}

.werdegang__since {
  font-size: var(--text-base);
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  font-weight: 500;
}

.werdegang__list {
  list-style: none;
  padding: 0;
}

.werdegang__list li {
  padding: var(--space-2) 0 var(--space-2) var(--space-5);
  position: relative;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
}

.werdegang__list li:last-child {
  border-bottom: none;
}

.werdegang__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.werdegang__list li strong {
  color: var(--text-primary);
}

.werdegang__link--dark {
  color: var(--text-primary) !important;
  text-decoration: none;
  font-weight: 500;
}

.werdegang__link--dark:hover {
  color: var(--accent) !important;
}

/* Werdegang bottom: Liste links, Compass rechts */
.werdegang__bottom {
  display: flex;
  gap: var(--space-6);
  align-items: flex-start;
}

.werdegang__bottom-content {
  flex: 1;
}

.werdegang__compass {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.werdegang__compass img {
  width: 160px;
  height: 160px;
  opacity: 0.12;
  transform: rotate(-12deg);
  transition: all 0.3s ease;
}

.card--werdegang:hover .werdegang__compass img {
  opacity: 0.18;
  transform: rotate(-8deg);
}

@media (prefers-color-scheme: dark) {
  .werdegang__compass img {
    filter: invert(1);
    opacity: 0.15;
  }
  
  .card--werdegang:hover .werdegang__compass img {
    opacity: 0.22;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .card--werdegang {
    padding: var(--space-5);
  }
  
  .werdegang__reset::before,
  .werdegang__reset::after {
    width: 25%;
  }
  
  .werdegang__bottom {
    flex-direction: column;
  }
  
  .werdegang__compass {
    align-self: flex-end;
    margin-top: var(--space-4);
  }
  
  .werdegang__compass img {
    width: 100px;
    height: 100px;
  }
}

/* ================================================
   ZWEITER COMPASS (klein, vor Kontakt)
   ================================================ */

.card--notfor::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -40px;
  width: 120px;
  height: 120px;
  background-image: url('images/compass-outline.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
  opacity: 0.04;
  transform: rotate(10deg);
}

@media (prefers-color-scheme: dark) {
  .card--notfor::after {
    opacity: 0.08;
    filter: invert(1);
  }
}

@media (max-width: 768px) {
  .card--notfor::after {
    width: 80px;
    height: 80px;
    top: -40px;
    right: -20px;
  }
}
