/* ═══════════════════════════════════════
   HERO — Vollbild Hintergrund mit Fade
═══════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding: 0;
}

/* Bild füllt den ganzen Hero */
.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Fade-Effekt: links weiß-grün → rechts transparent → Bild voll sichtbar */
.hero-fade-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right,
      #f0f7f0 0%,
      #f0f7f0 25%,
      rgba(240, 247, 240, 0.85) 42%,
      rgba(240, 247, 240, 0.3) 60%,
      transparent 75%);
}

/* Text liegt über allem */
.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 140px 52px 60px;
}

.hero-text {
  max-width: 540px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 77, 46, 0.09);
  border: 1px solid rgba(26, 77, 46, 0.18);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp 0.7s ease both;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--green-bright);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1) }
  50%       { opacity: 0.5; transform: scale(1.5) }
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.04;
  font-weight: 700;
  color: var(--text);
  animation: fadeUp 0.7s 0.12s ease both;
}

h1 em {
  font-style: italic;
  color: var(--green-dark);
}

.hero-sub {
  font-size: 17px;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.75;
  margin-top: 22px;
  max-width: 460px;
  animation: fadeUp 0.7s 0.24s ease both;
}

.hero-btns {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.36s ease both;
}

/* Buttons (auch in anderen Sektionen genutzt) */
.btn-primary {
  background: var(--green-dark);
  color: white;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 8px 28px rgba(26, 77, 46, 0.35);
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

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

.btn-outline {
  border: 2px solid var(--green-dark);
  color: var(--green-dark);
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all var(--transition);
}

.btn-outline:hover {
  background: var(--green-dark);
  color: white;
}

.btn-outline-white {
  border: 2px solid var(--green-dark);
  color: var(--green-dark);
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all var(--transition);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(4px);
}

.btn-outline-white:hover {
  background: var(--green-dark);
  color: white;
}

.hero-trust {
  display: flex;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.48s ease both;
}

.trust-item {
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.t-check {
  color: var(--green-bright);
  font-weight: 700;
  font-size: 15px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px) }
  to   { opacity: 1; transform: translateY(0) }
}

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(32px) }
  to   { opacity: 1; transform: translateX(0) }
}

/* Stats-Leiste */
.stats-bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  padding: 28px 40px;
  box-shadow: 0 -4px 40px rgba(26, 77, 46, 0.1);
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--green-dark);
}

.stat-lbl {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
  font-weight: 500;
}

.stat-div {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 20px;
}
