/* ═══════════════════════════════════════════════════════════
   STYLE.CSS  —  Optimierte Version
   ───────────────────────────────────────────────────────────*/
/* libertinus-math-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Libertinus Math';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/libertinus-math-v2-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/inter-v20-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* source-code-pro-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Source Code Pro';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/source-code-pro-v31-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


/* ─── CSS VARIABLES ─────────────────────────────────────── */
:root {
  /* Markenfarben */
  --brand-olive:   #8c9868;
  --brand-dark:    #1d2515;

  /* Textfarben */
  --heading:       #494949;
  --body-text:     #1c2010;
  --body-muted:    #636b4a;
  --label:         #4d523c;

  /* Flächen & Hintergründe */
  --surface:       #ffffff;
  --bg-soft:       #f5f5f0;

  /* Grüntöne */
  --green:         #7d8a60;
  --green-hover:   #6b7d52;
  --green-deep:    #4a5e36;
  --green-light:   #e8eedd;

  /* Akzentfarbe */
  --orange-accent: #e07a2a;

  /* Rahmen */
  --border:        #dde5d0;
  --border-green:  #c8d8b0;

  /* Schatten */
  --shadow-elev:   rgba(50,50,93,0.25) 0px 30px 45px -30px,
                   rgba(0,0,0,0.1)     0px 18px 36px -18px;
  --shadow-amb:    rgba(23,23,23,0.08) 0px 15px 35px 0px;
  --shadow-sm:     rgba(23,23,23,0.06) 0px 3px 6px;

  /* Typografie */
  --font-headline: 'Libertinus Math', sans-serif;
  --font:          'Inter', sans-serif;
  --mono:          'Source Code Pro', monospace;

  /* Layout-Helfer */
  --section-v:     96px;
  --radius-md:     10px;
  --radius-lg:     16px;

  /* Formular-spezifisch */
  --ink:           #1c2010;   
  --muted:         #636b4a;   
  --focus:         #4a5e36;   
  --success:       #2d6a2d;
  --error:         #b22222;
}

/* Textauswahl */
::selection {
  color: #fff;
  background-color: var(--brand-olive);
}


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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-weight: 300;
  font-feature-settings: "ss01"; /* global gesetzt — Wiederholungen entfernt */
  color: var(--body-text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

h1, h2 {color: var(--heading); }
h1, h2, h3 { font-family: var(--font-headline); }

strong { font-weight: 600; }

ul {
  list-style-position: inside;
  margin: 0 !important;
  padding: 0 !important;
}
li { margin: 0 !important; padding: 0; }


/* ─── UTILITY ────────────────────────────────────────────── */
.container { max-width: 1080px; margin: 0 auto; padding: 0 32px; }
.sr-only   { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }


/* ─── NAV ────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-size: 18px; font-weight: 400;
  color: var(--heading);
  letter-spacing: -0.22px;
  text-decoration: none;
}
@media (max-width: 900px) {
  .nav-logo {max-width: 155px;    margin-left: -25px;}
}

.nav-logo span { color: var(--green); }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 400;
  color: var(--heading);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }

.nav-cta {
  background: var(--green); color: #fff;
  border: none; padding: 8px 16px;
  border-radius: 4px;
  font-size: 16px; font-weight: 400;
  font-family: var(--font);
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}
.nav-cta:hover { background: var(--green-hover); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none;
  padding: 4px; border-radius: 6px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--heading); border-radius: 2px; transition: 0.3s;
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 8px 0 16px;
  }
  .nav-links.is-open {
    display: flex;
  }
  .nav-links li a {
    display: block;
    padding: 12px 24px;
    font-size: 15px;
  }
  .nav-cta {
    display: block;          /* statt display: none */
    font-size: 13px;
    padding: 6px 11px;
  }
  .nav-hamburger { display: flex; }

  /* X-Animation wenn geöffnet */
  .nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
@media (max-width: 380px) {
  .nav-cta {
    font-size: 12px;
    padding: 5px 9px;
    min-width: 112px;
  }
}
/* ─── HERO ───────────────────────────────────────────────── */
.hero,
.mandatory {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  background: var(--surface);
}

/* Video-Hintergrund */
.hero-video-wrap { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-video-wrap video {
  width: 160%; height: 100%;
  object-fit: contain; object-position: center;
  display: block;
}
/* Verlaufs-Overlay: Text bleibt lesbar */
.hero-video-wrap::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(
    90deg,
    rgb(255,255,255)       45%,
    rgba(255,255,255,0.95) 50%,
    rgba(255,255,255,0.5) 100%
  );
}

/* Alle direkten Kind-Elemente liegen über dem Video */
.hero > * { position: relative; z-index: 1; }

/* Dekorative Blur-Kreise */
.hero-deco {
  position: absolute; pointer-events: none;
  border-radius: 50%; filter: blur(80px); opacity: 0.18; z-index: 1;
}
.hero-deco-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, var(--green) 0%, transparent 70%);
  top: -120px; right: -100px;
}
.hero-deco-2 {
  width: 340px; height: 340px;
  background: radial-gradient(circle, var(--orange-accent) 0%, transparent 70%);
  bottom: -60px; left: -60px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(21,190,83,0.12);
  border: 1px solid rgba(21,190,83,0.35);
  border-radius: 4px; padding: 2px 10px;
  font-size: 12px; font-weight: 300;
  color: #108c3d; margin-bottom: 28px;
}
.hero-badge::before { content: "●"; font-size: 7px; color: var(--green); }

.hero h1 {
  font-size: calc(32px + 24 * ((100vw - 300px) / 1300)); font-weight: 300;
  line-height: 0.93em; letter-spacing: -1.4px;
  max-width: 680px; margin-bottom: 24px;
}
.hero h1 em { font-style: normal; color: var(--green); }

.hero-sub {
  font-size: 18px; font-weight: 300; line-height: 1.40;
  color: var(--body-muted); max-width: 540px; margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* Zwei-Zielgruppen CTAs */
.hero-dual-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 64px; margin-top: 32px; }
.cta-band .hero-dual-cta{justify-content: center;}
.cta-group     { display: flex; flex-direction: column; gap: 6px; }
.cta-label {
  font-size: 11px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; padding-left: 4px;
}

.hero-stats {
  display: flex; gap: 40px; margin-top: 64px;
  padding-top: 40px; border-top: 1px solid var(--border); flex-wrap: wrap;
}

.hero-micro::before { content: "✓"; color: var(--green); font-weight: 700; }

.stat-num {
  font-size: 32px; font-weight: 300;
  color: var(--heading); letter-spacing: -0.64px;
  font-feature-settings: "tnum"; line-height: 1.1;
}
.stat-num span { color: var(--green); }
.stat-label {
  font-size: 13px; font-weight: 400;
  color: var(--body-muted); margin-top: 4px;
}


/* ─── LOGOS ──────────────────────────────────────────────── */
.logos-section {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.logos-label {
  font-size: 12px; font-weight: 400;
  color: var(--body-muted); letter-spacing: 0.5px;
  text-transform: uppercase; margin-bottom: 24px; text-align: center;
}
.logos-row {
  display: flex; gap: 40px; align-items: center;
  justify-content: center; flex-wrap: wrap;
}
.logo-pill {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 5px; padding: 8px 20px;
  font-size: 13px; font-weight: 400; color: var(--label);
}


/* ─── FEATURES ───────────────────────────────────────────── */
.features { padding: 96px 0; background: var(--bg-soft); }

.section-label {
  font-size: 12px; font-weight: 400;
  color: var(--green); letter-spacing: 0.5px;
  text-transform: uppercase; margin-bottom: 16px;
}
.section-heading {
  font-size: 32px; font-weight: 300;
  line-height: 1.10; letter-spacing: -0.64px;
  color: var(--heading); max-width: 500px; margin-bottom: 56px;
}

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.feature-card,
.leistung-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 6px; padding: 28px 24px;
  box-shadow: var(--shadow-amb);
  transition: box-shadow 0.25s, transform 0.2s;
}
.feature-card:hover { box-shadow: var(--shadow-elev); transform: translateY(-2px); }

.feature-icon {
  width: 36px; height: 36px;
  background: rgba(102,204,102,0.12); border: 1px solid var(--border-green);
  border-radius: 5px; display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin-bottom: 18px;
}
.feature-card h3,
.leistung-card h3 {
  font-size: 22px; font-weight: 300;
  line-height: 1.10; letter-spacing: -0.22px;
  color: var(--heading); margin-bottom: 10px;
}
.feature-card p,
.leistung-card p {
  font-size: 15px; font-weight: 300;
  line-height: 1.55; 
}
.leistungen {
  padding: 96px 0;
  background: var(--bg-soft);
}
.leistungen-intro { font-size: 17px;  max-width: 560px; margin-bottom: 56px; }
.leistungen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.leistung-card:hover { box-shadow: var(--shadow-amb); transform: translateY(-3px); }
.leistung-icon { font-size: 28px; margin-bottom: 16px; }
.leistung-tag {
  display: inline-block; margin-top: 16px;
  font-size: 12px; font-weight: 700; padding: 4px 12px;
  background: rgba(46,125,94,.1); border-radius: 100px; ;
}
.leistung-card.featured .leistung-tag {
  background: rgba(255,255,255,.15); color: rgba(255,255,255,.9);
}


/* ─── ZWEI SPALTEN ───────────────────────────────────────── */
.two-col-section { padding: 96px 0; background: var(--surface); }
.two-col-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.two-col-text { z-index: 2; }
.two-col-text p,
.mandatory p,
.mandatory ul {
  font-size: 16px; font-weight: 300; line-height: 1.6;
  color: var(--body-muted); margin-bottom: 28px;
}
.two-col-img img {
  width: 100%; height: auto; display: block;
  border-radius: 6px; border: 1px solid var(--border);
  box-shadow: var(--shadow-amb);
}

/* Bild überlappt Sektionsränder */
.two-col-super { overflow: visible; position: relative; z-index: 1; }
.two-col-super .two-col-img {
  position: relative; margin-top: -25px;
  margin-left: -480px; z-index: 1; transform: translateX(120px);
}
.two-col-super .two-col-img img {
  box-shadow: var(--shadow-elev); border-radius: 6px; border: none;
}
.two-col-super + section { padding: 48px 0; }

@media (max-width: 768px) {
  .two-col-grid { grid-template-columns: 1fr; gap: 32px; }
  .two-col-img  { order: -1; }                          /* Bild oben auf Mobile */
  .two-col-super .two-col-img { margin-top: 0; margin-bottom: 0; }
}


/* ─── TRUST BADGES ───────────────────────────────────────── */
.intro-trust { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 32px; }
.trust-badge {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 6px; padding: 12px 18px;
  box-shadow: var(--shadow-amb); min-width: 305px;
}
.trust-badge .icon  { font-size: 20px; }
.trust-badge strong { font-size: 13px; display: block; color: var(--body-text); }
.trust-badge span   { font-size: 12px; color: var(--body-muted); }


/* ─── PROZESS ─────────────────────────────────── */
.prozess { 
  padding: 96px 0; 
  background: var(--bg-soft); 
}
.prozess-intro { font-size: 17px; max-width: 540px; margin-bottom: 56px; }
.prozess-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  position: relative;
}
.prozess-steps::before {
  content: "";
  position: absolute;
  top: 28px; left: calc(0px + 20px);
  right: calc(17.5% + 20px);
  height: 2px; background: var(--border); z-index: 0;
}
.prozess-step { padding: 0 16px; position: relative; z-index: 1; }
.step-circle {
  width: 56px; height: 56px; border-radius: 50%;
  background: #fff; border: 2px solid var(--brand-olive);
  display: flex; align-items: center; justify-content: center;
   font-size: 20px; font-weight: 700;
  color: var(--brand-olive); margin-bottom: 20px;
}
.prozess-step h4 { font-size: 16px; font-weight: 700; color: var(--c-dark); margin-bottom: 8px; }
.prozess-step p { font-size: 13px; color: var(--c-muted); line-height: 1.6; }
.prozess-time {
  display: inline-block; margin-top: 10px;
  font-size: 12px; font-weight: 700; color: var(--c-brand);
  background: rgba(46,125,94,.08); padding: 3px 10px; border-radius: 100px;
}
.prozess-note {
  margin-top: 48px; background: var(--c-white);
  border: 1px solid var(--c-border); border-radius: var(--radius-md);
  padding: 24px 28px; display: flex; align-items: flex-start; gap: 16px;
}
.prozess-note-icon { font-size: 24px; flex-shrink: 0; }
.prozess-note p { font-size: 14px; color: var(--c-muted); line-height: 1.65; }
.prozess-note p strong { color: var(--c-text); }
/* ─── ZIELGRUPPEN ────────────────────────────────────────── */
.zielgruppen { background: var(--bg-soft); }
.zielgruppen-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px; }

.zg-card {
  border-radius: 16px; padding: 48px 40px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-amb);
  min-width: 330px;
}
.zg-card.pflege {
  background: linear-gradient(135deg, var(--brand-olive) 0%, var(--brand-dark) 100%);
  color: #fff;
}
.zg-card.einrichtung { background: var(--surface); border: 2px solid var(--border); }

.zg-tag {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 12px; opacity: .7;
}
.zg-card h3 { font-size: 26px; font-weight: 700; line-height: 1.25; margin-bottom: 16px; }
.zg-card.pflege h3 { color: #fff; }
.zg-card p  { font-size: 15px; line-height: 1.6; margin-bottom: 28px; opacity: .85; }

.zg-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px !important; }
.zg-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; }
.zg-list li::before { content: "✓"; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.zg-card.pflege     .zg-list li::before { color: var(--orange-accent); }
.zg-card.einrichtung .zg-list li::before { color: var(--brand-olive); }


/* ─── BUTTONS ────────────────────────────────────────────── */
/* Gemeinsame Button-Basis */
.btn-primary,
.btn-ghost,
.btn-white,
.btn-brand,
.btn-accent {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 4px;
  font-size: 16px; font-weight: 400;
  font-family: var(--font);
  cursor: pointer; text-decoration: none; border: none;
  font-weight: 900;
}

.btn-primary {
  background: var(--green); color: #fff;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--green-hover); transform: translateY(-1px); }

.btn-ghost {
  background: transparent; color: var(--green);
  border: 1px solid var(--border-green);
  transition: background 0.2s;
}
.btn-ghost:hover { background: rgba(102,204,102,0.06); }

.btn-white { background: #fff; color: var(--brand-dark); }

.btn-brand { background: var(--brand-olive); color: #fff; }

.btn-accent { background: #fff; color: var(--focus); font-weight: 900; }

.btn-vorteile-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: #fff; color: var(--brand-olive) !important;
  padding: 13px 24px; border-radius: 9px;
  font-size: 14px; font-weight: 700; border: none; cursor: pointer;
  margin-top: 24px; transition: transform .15s;
}
.btn-vorteile-primary:hover { transform: translateY(-1px); }


/* ─── HOW IT WORKS ───────────────────────────────────────── */
.how { padding: 96px 0; background: var(--surface); }
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

.how-steps { display: flex; flex-direction: column; gap: 0; }
.how-step {
  display: flex; gap: 20px;
  padding: 24px 0; border-bottom: 1px solid var(--border); position: relative;
}
.how-step:last-child { border-bottom: none; }

.step-num {
  font-size: 12px; font-weight: 400;
  font-family: var(--mono); color: var(--green);
  background: rgba(102,204,102,0.1); border: 1px solid var(--border-green);
  border-radius: 4px; width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.step-content h4 {
  font-size: 18px; font-weight: 300; color: var(--heading);
  letter-spacing: -0.18px; margin-bottom: 6px;
}
.step-content p { font-size: 14px; font-weight: 300; color: var(--body-muted); line-height: 1.5; }

.how-visual {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 8px; padding: 32px; box-shadow: var(--shadow-elev);
}

/* Dashboard-Widget im How-Block */
.dashboard-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.dash-title  { font-size: 13px; font-weight: 400; color: var(--label); }
.dash-badge  {
  background: rgba(21,190,83,0.15); border: 1px solid rgba(21,190,83,0.35);
  border-radius: 4px; padding: 1px 8px;
  font-size: 10px; font-weight: 300; color: #108c3d;
}
.dash-metric {
  font-size: 32px; font-weight: 300; color: var(--heading);
  letter-spacing: -0.64px; font-feature-settings: "tnum"; margin-bottom: 4px;
}
.dash-metric-label { font-size: 12px; font-weight: 400; color: var(--body-muted); margin-bottom: 20px; }

.dash-bar-row  { display: flex; flex-direction: column; gap: 10px; }
.dash-bar-label {
  display: flex; justify-content: space-between;
  font-size: 11px; font-weight: 400; color: var(--label); margin-bottom: 4px;
}
.dash-bar-track { height: 5px; background: var(--border); border-radius: 2px; overflow: hidden; }
.dash-bar-fill  { height: 100%; background: var(--green); border-radius: 2px; transition: width 0.6s ease; }
.dash-divider   { height: 1px; background: var(--border); margin: 20px 0; }

.dash-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; padding: 6px 0;
  border-bottom: 1px solid var(--border); color: var(--label);
}
.dash-row:last-child { border-bottom: none; }
.dash-row-num { font-family: var(--mono); font-size: 12px; font-weight: 500; color: var(--heading); font-feature-settings: "tnum"; }
.dash-dot       { width: 6px; height: 6px; border-radius: 50%; background: var(--green); display: inline-block; margin-right: 6px; }
.dash-dot.orange { background: var(--orange-accent); }


.warum {
  { padding: 96px 0; background: var(--surface); }
}
.warum-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.warum-text p { font-size: 15px;  margin-bottom: 16px; }
.warum-text strong {  }
.warum-points { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.warum-point {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 25px;
}
.wp-icon {
  width: 40px; height: 40px; border-radius: 9px; flex-shrink: 0;
  background: rgba(46,125,94,.12);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.wp-text h4 { font-size: 15px; font-weight: 700; color: var(--c-dark); margin-bottom: 4px; }
.wp-text p { font-size: 13px; line-height: 1.55; }
.warum-visual { display: flex; flex-direction: column; gap: 16px; }
.warum-img-main { border-radius: 25px; overflow: hidden; box-shadow: var(--shadow-amb); }
.warum-img-main img { width: 100%; }
.warum-quote {
  background: var(--c-dark); border-radius: var(--radius-md); padding: 28px;
  border-left: 4px solid var(--c-brand);
}
.warum-quote blockquote {
  font-family: var(--font-head); font-size: 16px; font-style: italic;
  color: rgba(255,255,255,.8); line-height: 1.6; margin-bottom: 12px;
}
.warum-quote cite { font-size: 13px; color: rgba(255,255,255,.4); font-style: normal; font-weight: 600; }


/* ─── DARK SECTION (Referenzen) ──────────────────────────── */
#referenzen .hero-sub { max-width: 100%; }

.dark-section { background: var(--brand-dark); padding: 96px 0; }
.dark-section .section-label    { color: rgba(102,204,102,0.8); }
.dark-section .section-heading  { color: #fff; max-width: 600px; }

/* Testimonials — aktuell als Slider (display:block) */
.testimonials-grid { display: block; }

.testimonial-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px; padding: 24px;
}
.testimonial-card p,
.testimonial-card ul,
.testimonial-card li {
  font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,0.75); line-height: 1.55; margin-bottom: 20px;
}

/* Slick-Dots */
.slick-list                                                { max-width: 84vw;}
.slick-track                                               { overflow: hidden;}
.testimonials-grid .slick-dots                             { bottom: -36px; }
.testimonials-grid .slick-dots li button:before            { color: #656565; }
.testimonials-grid .slick-dots li.slick-active button:before { color: #66cc66; }
.testimonials-grid .testimonial-card                       { margin: 0 10px; }
@media (max-width: 900px) {
  .testimonials-grid .testimonial-card                       { margin: 0; }
}


.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 34px; height: 34px; border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 400; color: #fff; flex-shrink: 0;
}
.author-name { font-size: 13px; font-weight: 400; color: #fff; }
.author-role { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.45); }


/* ─── ALLTAG / PROBLEM ───────────────────────────────────── */
.problem { padding: 96px 0; background: var(--bg-soft); }
.problem-intro { margin-bottom: 56px; }

.problem-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px;
  background: linear-gradient(135deg, var(--brand-olive) 0%, var(--brand-dark) 100%);
  border-radius: 25px; overflow: hidden;
}
.problem-card {
  background: rgba(255,255,255,0.1); padding: 36px 32px;
  display: flex; flex-direction: column; gap: 12px;
}
.problem-icon { font-size: 28px; }
.problem-card h3 { font-size: 18px; font-weight: 700; color: #fff; }
.problem-card p  { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.65; }
.problem-card .solve {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: #fff; margin-top: 4px;
}
.problem-card .solve::before { content: "→"; }


/* ─── EINSATZMÖGLICHKEITEN / FACHBEREICHE ───────────────────────────────── */
.einsaetze, .fachbereiche { padding: var(--section-v) 0; }
.einsaetze-intro, .fachbereiche-intro  { font-size: 17px; color: var(--body-text); max-width: 560px; margin-bottom: 56px; }
.einsaetze-grid, .fb-grid  { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.einsatz-card, .fb-card {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 25px; padding: 28px 24px; transition: box-shadow .2s;
}

.einsatz-card:hover, .fb-card:hover  { box-shadow: var(--shadow-amb); }
.einsatz-icon, .fb-card-icon   { font-size: 24px; margin-bottom: 12px; }
.einsatz-card h3, .fb-card-text h4  { font-size: 17px; font-weight: 700; color: var(--body-text); margin-bottom: 10px; }
.einsatz-card p, .fb-card-text p  { font-size: 14px; color: var(--body-text); line-height: 1.6; margin-bottom: 14px; }
.einsatz-tags, .fb-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag, .fb-tag{
  font-size: 12px; font-weight: 600; padding: 4px 12px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 100px; color: var(--body-text);
}
.einsaetze-fachbereiche,
.fb-more {
  margin-top: 48px; background: #0f1a14;
  border-radius: 25px; padding: 40px;
}
.einsaetze-fachbereiche h3 {
  font-family: var(--font-headline); font-size: 22px; font-weight: 700;
  color: #fff; margin-bottom: 24px;
}


.fb-more {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.fb-more p { font-size: 16px; color: rgba(255,255,255,.65); max-width: 520px; }
.fb-more p strong { color: #fff; }


.fachbereich-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.fb-pill {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px; padding: 10px 14px;
  font-size: 13px; color: rgba(255,255,255,.7); font-weight: 500;
}

@media (max-width: 900px) {
  .einsaetze-grid         { grid-template-columns: 1fr; }
  .fachbereich-grid       { grid-template-columns: repeat(3, 1fr); }
  .einsaetze-fachbereiche { padding: 32px 28px; }
  .hero-video-wrap video {
    width: auto;
    height: 123vh;
  }
}

@media (max-width: 600px) {
  .einsaetze-intro      { font-size: 15px; margin-bottom: 36px; }
  .einsaetze-grid       { gap: 16px; }
  .einsatz-card         { padding: 22px 18px; border-radius: 18px; }
  .einsatz-card h3      { font-size: 16px; }
  .einsaetze-fachbereiche {
    margin-top: 32px;
    padding: 24px 20px;
    border-radius: 18px;
  }

  .einsaetze-fachbereiche h3 { font-size: 18px; margin-bottom: 18px; }

  .fachbereich-grid { grid-template-columns: repeat(2, 1fr);  gap: 8px; }

  .fb-pill { font-size: 12px;  padding: 8px 10px; text-align: center; }
}

@media (max-width: 380px) {
  .fachbereich-grid {    grid-template-columns: 1fr;  }
  .hero-micro::before {
    position: absolute;
    left: -21px;
  }
}


/* ─── VORTEILE ───────────────────────────────────────────── */
.vorteile { padding: var(--section-v) 0; background: var(--bg-soft);}
.vorteile-intro { font-size: 17px; color: var(--body-muted); max-width: 560px; margin-bottom: 56px; }
.vorteile-grid  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.vorteile-card {
  border: 1px solid var(--border); border-radius: 25px; padding: 36px 28px;
  background: var(--surface); transition: box-shadow .2s, transform .2s;
  display: flex; flex-direction: column;
}
.vorteile-card:hover { box-shadow: var(--shadow-amb); transform: translateY(-3px); }
.vorteile-card.featured { background: var(--brand-olive); border-color: var(--brand-olive); color: #fff; }

.vorteile-plan { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--brand-olive); margin-bottom: 8px; }
.vorteile-card.featured .vorteile-plan { color: rgba(255,255,255,.65) !important; }

.vorteile-problem { font-size: 13px; color: #6f0000; font-weight: 600; margin-bottom: 6px; font-style: italic; }
.vorteile-card.featured .vorteile-problem { color: #6f0000 !important; }

.vorteile-price { font-size: 19px; font-weight: 700; color: var(--body-muted); line-height: 1.3; margin-bottom: 16px; }
.vorteile-card.featured .vorteile-price { color: #fff !important; }

.vorteile-divider { border: none; border-top: 1px solid var(--border); margin: 16px 0; }
.vorteile-card.featured .vorteile-divider { border-color: rgba(255,255,255,.2); }

.vorteile-features-list { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.vorteile-features-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--body-muted); }
.vorteile-features-list li::before { content: "✓"; font-weight: 700; color: var(--brand-olive); flex-shrink: 0; margin-top: 1px; }
.vorteile-card.featured .vorteile-features-list li { color: rgba(255,255,255,.85); }
.vorteile-card.featured .vorteile-features-list li::before { color: rgba(255,255,255,.85); }




/* ─── TEAM ───────────────────────────────────────────────── */
.team { padding: 96px 0; background: var(--surface); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.team-card {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 6px; overflow: hidden;
  transition: box-shadow 0.25s, transform 0.2s;
}
.team-card:hover { box-shadow: var(--shadow-elev); transform: translateY(-3px); }

.team-img-wrap { width: 100%; aspect-ratio: 1 / 1; overflow: hidden; }
.team-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  display: block; transition: transform 0.4s ease;
}
.team-card:hover .team-img-wrap img { transform: scale(1.04); }

.team-info  { padding: 20px 22px 24px; }
.team-name  { font-size: 18px; font-weight: 300; letter-spacing: -0.18px; color: var(--heading); margin-bottom: 4px; }
.team-title { font-size: 13px; font-weight: 400; color: var(--green); margin-bottom: 12px; }
.team-bio   { font-size: 14px; font-weight: 300; line-height: 1.55; color: var(--body-muted); }


/* ─── CTA BREAK / BAND ───────────────────────────────────── */
.cta-break,
.cta-band {
  padding: 96px 0;
  background: var(--brand-olive);
  text-align: center;
}
.cta-break h2, .cta-band h2 {
  font-size: clamp(28px, 4vw, 50px);
  color: #fff; font-weight: 700; margin-bottom: 14px;
}
.cta-break p {
  font-size: 18px; color: rgba(255,255,255,.75);
  margin: 0 auto 40px; max-width: 540px;
}
.cta-break .steps-mini { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-bottom: 40px; }
.step-mini     { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.8); font-size: 14px; }
.step-mini-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; flex-shrink: 0;
}
.cta-break .microcopy { font-size: 13px; color: rgba(255,255,255,.4); margin-top: 14px; }


/* ─── FORM ───────────────────────────────────────────────── */
/* Allgemeines Kontaktformular (Card-Variante) */
.card {
  max-width: 630px; width: 100%; margin: auto;
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 8px; padding: 32px;
  box-shadow: var(--shadow-elev);
}
.subtitle { color: var(--muted); font-size: 0.9rem; margin-bottom: 2.5rem; font-style: italic; }
.field    { margin-bottom: 1.5rem; }

label {
  display: block; font-size: 0.82rem;
  letter-spacing: 0.08em; margin-bottom: 0.45rem; color: var(--muted);
}
input, textarea {
  width: 100%; padding: 0.7rem 0.9rem;
  border: 1px solid var(--border); background: #fff;
  font-family: inherit; font-size: 1rem; color: var(--ink);
  outline: none; transition: border-color 0.15s;
  border-radius: 0; -webkit-appearance: none;
}
input:focus, textarea:focus {
  border-color: var(--focus);
  box-shadow: 0 0 0 2px rgba(45,90,39,0.15);
}
textarea { resize: vertical; min-height: 130px; }

/* Honeypot (Anti-Spam) */
.hp-field {
  position: absolute; left: -9999px;
  width: 1px; height: 1px; overflow: hidden; opacity: 0;
}

/* CAPTCHA */
.captcha-row { display: flex; align-items: center; gap: 1rem; }
.captcha-question { white-space: nowrap; font-size: 1rem; color: var(--ink); }
.captcha-row input {
  max-width: 90px; font-family: 'Courier New', monospace;
  background: var(--bg-soft); padding: 0.5rem 0.75rem; letter-spacing: 0.05em;
}

/* Submit-Button (globales form) */
button:not(.nav-hamburger) {
  margin-top: 1rem; width: 100%; padding: 0.85rem; font-weight: 900;
  background: var(--ink); color: #fff;
  border: none; font-family: inherit; font-size: 1rem;
  letter-spacing: 0.04em; cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}

/* Feedback-Meldungen */
.msg { display: none; margin-top: 1.5rem; padding: 1rem; font-size: 0.92rem; border: 1px solid; }
.msg.success { color: var(--success); border-color: var(--success); background: #f0f7ef; }
.msg.error   { color: var(--error);   border-color: var(--error);   background: #fdf0f0; }
.msg.show    { display: block; }

.field-error { color: var(--error); font-size: 0.8rem; margin-top: 0.3rem; }

/* Bewerbungs-Formular (Abschnitt mit Grid) */
.form-section { padding: var(--section-v) 0; background: var(--bg-soft); }
.form-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }


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

@media (max-width: 600px) {
  .form-grid      { gap: 16px; }
}

.form-text p      { font-size: 15px; color: var(--body-muted); margin-bottom: 16px; }
.form-text strong { color: var(--body-text); }

.form-trust-list  { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.form-trust-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--body-muted);
}
.form-trust-list li::before { content: "✓"; font-weight: 700; color: var(--brand-olive); flex-shrink: 0; }

.form-images     { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.form-images img { border-radius: var(--radius-md); object-fit: cover; aspect-ratio: 3/4; width: 100%; }

.bewerbung-form {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 25px; padding: 40px; box-shadow: var(--shadow-amb);
}
.form-headline { font-size: 22px; font-weight: 700; color: var(--heading); margin-bottom: 6px; }
.form-sub      { font-size: 14px; color: var(--body-muted); margin-bottom: 28px; }
.form-group    { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--body-text); }

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--border); border-radius: 8px;
  padding: 11px 14px; font-size: 15px; font-family: inherit;
  color: var(--body-text); background: #fff;
  transition: border-color .2s; width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--brand-olive); }
.form-group textarea { resize: vertical; min-height: 90px; }

.form-row     { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-consent { font-size: 12px; color: var(--body-muted); margin-top: 4px; }
.form-consent a { color: var(--brand-olive); text-decoration: underline; }

.form-submit {
  width: 100%; margin-top: 8px; padding: 16px; border-radius: 10px;
  background: var(--brand-olive); color: #fff;
  font-size: 16px; font-weight: 700; border: none; cursor: pointer; transition: background .2s;
}
.form-submit:hover { background: var(--green-hover); }
.form-micro { font-size: 12px; color: var(--body-muted); text-align: center; margin-top: 10px; }

.contact-alt {
  margin-top: 24px; padding: 20px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 25px; text-align: center;
}
@media (max-width: 600px) {
  .form-grid        { gap: 16px; } /* bereits vorhanden */
  .form-row         { grid-template-columns: 1fr; }

  .bewerbung-form   { padding: 24px 18px; border-radius: 18px; }
  .form-headline    { font-size: 18px; }
}

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--brand-dark); padding: 56px 0 32px;
  color: rgba(255,255,255,0.6);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand-name { font-size: 18px; font-weight: 400; color: #fff; margin-bottom: 12px; }
.footer-brand-name span { color: var(--green); }
.footer-desc { font-size: 13px; font-weight: 300; line-height: 1.55; color: rgba(255,255,255,0.45); max-width: 240px; }

.footer-col-title {
  font-size: 11px; font-weight: 400; color: rgba(255,255,255,0.35);
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.55);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--green); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 12px;
}
.footer-bottom a       { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-bottom a:hover { color: var(--green); }

footer .contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: .5rem;
}

footer .contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
}

footer .icon {
  opacity: .85;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}
/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero > .container > * { animation: fadeUp 0.7s ease forwards; opacity: 0; }
.hero-badge   { animation-delay: 0.05s; }
.hero h1      { animation-delay: 0.15s; }
.hero-sub     { animation-delay: 0.25s; }
.hero-actions { animation-delay: 0.35s; }
.hero-stats   { animation-delay: 0.45s; }


/* ─── RESPONSIVE ─────────────────────────────────────────── */

/* Tablet breit: ≤ 1024px */
@media (max-width: 1024px) {
  .stat-item          { text-align: center;}
  .features-grid      { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid  { grid-template-columns: repeat(2, 1fr); }
  .vorteile-grid      { grid-template-columns: repeat(2, 1fr); }
  .zielgruppen-grid   { grid-template-columns: 1fr; }
  .footer-grid        { grid-template-columns: 1fr 1fr; }
}

/* Tablet schmal: ≤ 900px */
@media (max-width: 900px) {
  .section-heading  { font-size: 26px; }
  .problem-card     { padding: 28px 24px; }
  .problem-card h3  { font-size: 16px; }
}

/* Tablet / großes Mobile: ≤ 768px */
@media (max-width: 768px) {
  .hero              { padding: 60px 0 48px; }
  .hero h1           { font-size: 32px; letter-spacing: -0.64px; }
  .hero-stats        { gap: 24px; }
  .how-grid          { grid-template-columns: 1fr; }
  .how-visual        { display: none; }
  .cta-band h2       { font-size: 32px; letter-spacing: -0.64px; }
  .nav-links         { display: none; }
  .nav-hamburger     { display: flex; }
  .section-heading   { font-size: 26px; letter-spacing: -0.26px; }
  .features-grid,
  .testimonials-grid,
  .vorteile-grid     { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr; gap: 32px; }
  .features, .how, .dark-section, .vorteile { padding: 56px 0; }
  .team-grid         { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .team-img-wrap     { aspect-ratio: 3 / 2; }
}

/* Mobile: ≤ 700px */
@media (max-width: 700px) {
  .problem           { padding: 64px 0; }
  .section-heading   { font-size: 24px; }
  .problem-intro     { margin-bottom: 36px; }
  .problem-grid      { grid-template-columns: 1fr; border-radius: 16px; }
  .problem-card      { padding: 28px 24px; }
}
