/* -------------------------------------------
   1. RESET & GRUNDLAYOUT
-------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  color: #0f172a;
  background: radial-gradient(circle at top, #e5f0ff 0, #f8fafc 40%, #f8fafc 100%);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* -------------------------------------------
   2. DESIGN TOKENS
-------------------------------------------- */
:root {
  --color-bg: #f8fafc;
  --color-surface: #ffffff;
  --color-primary: #0b2e63;       /* LoDo Dunkelblau */
  --color-primary-soft: #154079;
  --color-accent: #FFD600;        /* LoDo REINES Gelb */
  --color-accent-soft: #FFE866;   /* Helles LoDo-Gelb für Verläufe */
  --color-text: #0f172a;
  --color-muted: #64748b;
  --color-border: #e2e8f0;

  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-pill: 999px;

  --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.12);

  --max-width: 1120px;
  --section-y: 80px;

  /* Font Sizes */
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 2.75rem;
}

/* -------------------------------------------
   3. UTILITY CLASSES
-------------------------------------------- */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: var(--section-y) 0; }
.section-header { max-width: 640px; margin: 0 auto 2.5rem auto; text-align: center; }
.section-kicker { text-transform: uppercase; letter-spacing: 0.08em; font-size: var(--font-size-xs); font-weight: 600; color: var(--color-primary); margin-bottom: 0.75rem; }
.section-title { font-size: var(--font-size-2xl); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 0.75rem; }
.section-subtitle { font-size: var(--font-size-md); color: var(--color-muted); }

/* -------------------------------------------
   4. NAVIGATION
-------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 100; backdrop-filter: blur(18px); background: rgba(248, 250, 252, 0.85); border-bottom: 1px solid rgba(226, 232, 240, 0.8); }
.navbar { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-left, .nav-right { display: flex; align-items: center; gap: 1.5rem; }
.logo { display: flex; align-items: center; gap: 0.6rem; font-weight: 800; font-size: 1.05rem; letter-spacing: -0.04em; color: var(--color-primary); text-decoration: none; }
/* Neues Styling für das Header-Bild */
.header-logo-img {
  height: 32px; /* Gleiche Höhe wie vorher das Viereck */
  width: auto;
  margin-right: 0.6rem;
}
.nav-links { display: flex; align-items: center; gap: 1.25rem; font-size: var(--font-size-sm); }
.nav-links a { color: var(--color-muted); text-decoration: none; font-weight: 500; transition: color 0.2s ease, transform 0.2s ease; }
.nav-links a:hover { color: var(--color-primary); transform: translateY(-1px); }

/* -------------------------------------------
   5. BUTTONS
-------------------------------------------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem; padding: 0.7rem 1.4rem; border-radius: var(--radius-pill); border: 1px solid transparent; font-size: var(--font-size-sm); font-weight: 600; cursor: pointer; text-decoration: none; transition: all 0.2s ease; white-space: nowrap; }
.btn-primary { background: linear-gradient(135deg, var(--color-primary), var(--color-primary-soft)); color: #ffffff; box-shadow: 0 10px 20px rgba(11, 46, 99, 0.25); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 15px 30px rgba(11, 46, 99, 0.35); }
.btn-secondary { background: rgba(255, 255, 255, 0.9); border: 1px solid rgba(148, 163, 184, 0.4); color: var(--color-text); }
.btn-secondary:hover { background: #ffffff; border-color: var(--color-primary); transform: translateY(-2px); color: var(--color-primary); }

/* -------------------------------------------
   6. HERO SECTION (Clean, ohne Bild)
-------------------------------------------- */
.hero {
  padding: 80px 0 64px 0;
  /* Kein Hintergrundbild mehr - der Radial-Gradient vom Body wirkt hier */
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: var(--font-size-xs);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 1.2rem;
  color: var(--color-primary);
}

/* Reines Gelb mit Schatten für Lesbarkeit */
.hero-highlight {
  color: var(--color-accent); /* #FFD600 */
  text-shadow: 1px 1px 0px rgba(0,0,0,0.1); 
  background: none;
  -webkit-text-fill-color: initial;
}

.hero-text {
  font-size: var(--font-size-lg);
  color: var(--color-muted);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Hero Media / Card Mockup */
.hero-media {
  position: relative;
  perspective: 1000px;
}

.hero-card {
  position: relative;
  border-radius: 32px;
  /* Dunkles UI für den Kontrast */
  background: radial-gradient(circle at top, #0b2e63 0, #020617 80%);
  color: #e2e8f0;
  padding: 2rem;
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.25);
  transform: rotateY(-5deg) rotateX(2deg);
  transition: transform 0.5s ease;
}

.hero-card:hover {
  transform: rotateY(0deg) rotateX(0deg);
}

.hero-card-tag {
  display: inline-flex;
  align-items: center;
  font-size: var(--font-size-xs);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,0.1);
}

/* Angepasst für Logo-Platzierung */
.hero-card-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 140px; 
  position: relative;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
}

.hero-card-score {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  background: radial-gradient(circle at 30% 0, var(--color-accent) 0, var(--color-accent-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.8rem;
  color: #0b2e63;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.hero-card-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.hero-card-meta {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  font-size: var(--font-size-sm);
  color: #94a3b8;
}

/* -------------------------------------------
   7. FEATURES GRID
-------------------------------------------- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.feature-card { background: var(--color-surface); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid rgba(226, 232, 240, 0.6); box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); }
.feature-icon { width: 48px; height: 48px; border-radius: 14px; background: rgba(11, 46, 99, 0.05); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; font-size: 1.5rem; }
.feature-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--color-primary); }
.feature-text { color: var(--color-muted); font-size: 0.95rem; }

/* -------------------------------------------
   8. CTA SECTION (Mit Animation & Logo-Wasserzeichen)
-------------------------------------------- */
.cta {
  padding: 80px 0 100px 0;
}

@keyframes pixelReveal {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}

.cta-box {
  /* LoDo Dunkelblau Basis */
  background: var(--color-primary); 
  background: linear-gradient(135deg, var(--color-primary) 0%, #061b3d 100%);
  
  border-radius: 32px;
  padding: 4rem 2rem;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(11, 46, 99, 0.5);
  position: relative;
  overflow: hidden; /* Wichtig, damit das riesige Logo nicht rausragt */
  border: 2px solid rgba(255, 255, 255, 0.1);

  /* Animation beim Laden */
  animation: pixelReveal 1s ease-out forwards;
}

/* 1. Hintergrund-Ebene: Das Pixel-Raster */
.cta-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

/* 2. Hintergrund-Ebene: Das Logo-Wasserzeichen (NEU!) */
.cta-box::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  /* Zentriert + leichte Rotation für Dynamik */
  transform: translate(-50%, -50%) rotate(-10deg); 
  width: 400px;  /* Schön groß */
  height: 400px;
  background-image: url('lo_do_transparent.png'); /* Nutzt dein Hauptlogo */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.05; /* Sehr dezent (5% Sichtbarkeit) */
  pointer-events: none;
  z-index: 0; /* Hinter dem Text */
}

/* Inhalt muss ÜBER dem Wasserzeichen liegen */
.cta-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.cta-text {
  font-size: 1.2rem;
  color: #e2e8f0;
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
  position: relative;
  z-index: 1;
  font-weight: 500;
}

.cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Buttons im CTA */
.cta-actions .btn-primary {
  background: var(--color-accent); 
  color: var(--color-primary); 
  padding: 1rem 2rem;
  font-size: 1.1rem;
  box-shadow: 0 10px 25px rgba(255, 214, 0, 0.3);
}

.cta-actions .btn-primary:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 214, 0, 0.4);
}

.cta-actions .btn-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.cta-actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
  transform: translateY(-3px);
}
/* -------------------------------------------
   9. PROSE & TEAM CONTENT
-------------------------------------------- */
.prose-section { padding-top: 40px; padding-bottom: 80px; }
.prose-container { background: #fff; padding: 3rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); max-width: 800px; margin: 0 auto; }
.prose-content h1 { font-size: 2.5rem; font-weight: 900; color: var(--color-primary); margin-bottom: 2rem; border-bottom: 3px solid var(--color-accent); display: inline-block; }
.prose-content h3 { color: var(--color-primary); margin-top: 2rem; margin-bottom: 0.5rem; font-weight: 700; }
.prose-content p, .prose-content li { color: #334155; margin-bottom: 1rem; }
.form-wrapper { background: #fff; padding: 2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); margin-top: -60px; position: relative; z-index: 10; }
.hero-business { padding-bottom: 100px; text-align: center; }

/* TEAM */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 3rem; }
.team-card { background: #ffffff; border-radius: 24px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.08); text-align: center; border: 1px solid rgba(226, 232, 240, 0.8); transition: transform 0.2s ease; }
.team-card:hover { transform: translateY(-5px); }
.team-image { width: 100%; height: 250px; background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%); object-fit: cover; }
.team-content { padding: 1.5rem; }
.team-name { font-size: 1.25rem; font-weight: 800; color: var(--color-primary); margin-bottom: 0.25rem; }
.team-role { font-size: 0.9rem; color: var(--color-accent); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; }
.team-bio { font-size: 0.9rem; color: var(--color-muted); }

/* -------------------------------------------
   10. FOOTER
-------------------------------------------- */
.site-footer { border-top: 1px solid #e2e8f0; padding: 2rem 0; margin-top: 4rem; color: var(--color-muted); font-size: 0.9rem; }
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-links a { color: var(--color-muted); margin-left: 1.5rem; text-decoration: none; }

/* -------------------------------------------
   11. RESPONSIVE (Medienabfragen am Ende!)
-------------------------------------------- */
@media (max-width: 900px) {
  .hero-inner, .features-grid, .lodo-dual { grid-template-columns: 1fr; }
  .hero-card { max-width: 400px; margin: 2rem auto 0; transform: none; }
  .nav-links { display: none; }
  .navbar { flex-direction: column; gap: 1rem; height: auto; padding: 1rem; }
  .nav-right { width: 100%; justify-content: center; }
  .btn { width: 100%; justify-content: center; }
}

/* ===========================================
   12. HERO CARD ANIMATION & WASSERZEICHEN
   =========================================== */

/* Logo als großes Wasserzeichen im Hintergrund */
.logo-on-card {
    width: 160px;  /* Schön groß */
    height: 160px;
    
    /* Zentriert */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    /* In den Hintergrund schieben */
    z-index: 0; 
    
    /* Transparent machen */
    opacity: 0.20; 
    
    object-fit: contain;
    pointer-events: none; /* Klicks gehen durch */
}

/* WICHTIG: Der Text muss ÜBER dem Logo liegen */
.hero-card-main, 
.hero-card-tag, 
.hero-card-meta {
    position: relative;
    z-index: 2; /* Höher als das Logo */
}

/* Health Spot Text */
.hero-card-spot {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    text-align: center;
    width: 100%;
}

/* Animation Keyframes (Slide-Up) */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100px) rotateY(-5deg) rotateX(2deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateY(-5deg) rotateX(2deg);
    }
}

/* Animation Klasse */
.animated-card {
    animation: slideInUp 1.2s ease-out 0.5s forwards;
    opacity: 0; 
}

/* Layout Anpassung */
.hero-card-main {
    flex-direction: column;
    justify-content: center;
    min-height: 140px; 
    position: relative;
}






