/* ===========================
   HERO (Unternehmen)
   =========================== */

.about-hero {
  position: relative;
  height: 70vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: url("/img/unternehmen/hero.jpg") center / cover no-repeat;
}

/* dezente Abdunkelung + leichter Verlauf für Tiefe */
.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0.18) 60%, rgba(0,0,0,0.30) 100%);
  pointer-events: none;
}

.about-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
  color: #fff;
  animation: heroFadeIn 900ms ease-out both;
}

/* Logo/Schriftzug */
.hero-logo {
  width: clamp(220px, 34vw, 520px);
  height: auto;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.35));
  animation: logoRise 900ms ease-out 80ms both, logoGlow 3200ms ease-in-out 1s infinite alternate;
}

/* gläserne Subline-Box */
.hero-subline {
  display: inline-block;
  margin-top: .4rem;
  padding: .8rem 1.2rem;
  border-radius: 14px;
  color: #f3f3f3;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.5;
  background: rgba(20, 20, 20, 0.28);
  backdrop-filter: blur(8px) saturate(110%);
  -webkit-backdrop-filter: blur(8px) saturate(110%);
  box-shadow: 0 8px 26px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.18);
  animation: glassFloat 3400ms ease-in-out 600ms infinite alternate;
}

/* ===========================
   Animations
   =========================== */

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes logoRise {
  from { opacity: 0; transform: translateY(24px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}

/* sanftes Branding-Glühen in Entec-Rot */
@keyframes logoGlow {
  from { filter: drop-shadow(0 6px 18px rgba(230,57,70,0.25)); }
  to   { filter: drop-shadow(0 6px 28px rgba(230,57,70,0.70)); }
}


/* dezentes „Schweben“ für die Glasbox 
@keyframes glassFloat {
  0%   { transform: translateY(0);    }
  100% { transform: translateY(6px);  }
}
*/

/* Bewegungsreduktion respektieren */
@media (prefers-reduced-motion: reduce) {
  .about-hero__content,
  .hero-logo,
  .hero-subline {
    animation: none !important;
  }
}

/* CEO */
.about-ceo { padding: 5rem 2rem; background:#fff; }
.about-ceo__container {
  max-width: 1100px; margin: 0 auto; display:flex; flex-wrap:wrap; gap:2.5rem; align-items:center;
}
.about-ceo__figure { flex:1 1 360px; margin:0; }
.about-ceo__figure img { width:100%; height:auto; border-radius:16px; box-shadow:0 16px 40px rgba(0,0,0,.12); object-fit:cover; }
.about-ceo__figure figcaption { margin-top:.6rem; color:#666; font-size:.95rem; }

.about-ceo__text { flex:1 1 480px; }
.about-ceo__text h2 { color:#111; font-size: clamp(1.6rem, 3vw, 2rem); margin:0 0 .5rem; }
.about-ceo__text .subline { color:#e63946; font-weight:600; margin:0 0 1.2rem; }
.about-ceo__text p { color:#444; line-height:1.7; text-align:justify; hyphens:auto; }
.facts { list-style:none; padding:0; margin:1rem 0 0; }
.facts li { display:flex; gap:.5rem; align-items:flex-start; margin:.3rem 0; color:#333; }
.facts li::before { content:"•"; color:#e63946; font-weight:700; flex-shrink:0; line-height:1.4; }

/* VALUES */
.about-values { padding:5rem 2rem; background:#fafafa; }
.section-head { max-width:900px; margin:0 auto 2rem; text-align:center; }
.section-head h2 { color:#e63946; font-size: clamp(1.8rem, 3.5vw, 2.2rem); margin-bottom:.4rem; }
.section-head p { color:#555; }

.values-grid {
  max-width:1100px; margin:0 auto; 
  display:grid; grid-template-columns: repeat(12,1fr); gap:1.2rem;
}
.value {
  grid-column: span 6; background:#fff; border-radius:14px; padding:1.4rem 1.6rem;
  box-shadow:0 10px 26px rgba(0,0,0,.07);
}
.value h3 { margin:.2rem 0 .5rem; color:#111; }
.value p  { margin:0; color:#444; line-height:1.65; }

/* BADGES */
.about-badges { padding: 3.5rem 2rem 1.5rem; background:#fff; }
.badges-grid {
  max-width:1000px; margin:0 auto; display:grid; gap:1rem;
  grid-template-columns: repeat(4,1fr);
}
.badge { background:#f7f7f8; border-radius:14px; padding:1.2rem; text-align:center; }
.badge-num { display:block; font-size:1.6rem; font-weight:700; color:#111; }
.badge-label { display:block; color:#666; }

.footnote { text-align:center; color:#777; margin-top:.8rem; font-size:.9rem; }

/* PARTNER LOGOS */
.about-partners { padding:5rem 2rem; background:#fafafa; }
.logo-list { max-width:1100px; margin:0 auto; list-style:none; display:flex; flex-wrap:wrap; gap:2rem; justify-content:center; padding:0; }
.logo-list img { height:36px; filter:grayscale(100%) brightness(.85); opacity:.9; transition:.25s; }
.logo-list img:hover { filter:none; opacity:1; transform:scale(1.03); }

/* CTA */
.about-cta { padding:4rem 2rem 5rem; text-align:center; background:#111; color:#fff; }
.about-cta h2 { font-size: clamp(1.6rem, 3.2vw, 2.2rem); margin-bottom:.4rem; }
.about-cta p  { color:#eaeaea; margin-bottom:1rem; }
.about-cta .btn {
  display:inline-block; background:#e63946; color:#fff; text-decoration:none; 
  padding:.8rem 1.2rem; border-radius:10px; font-weight:600; transition:.2s;
}
.about-cta .btn:hover { filter:brightness(1.05); }

/* Responsive */
@media (max-width: 900px){
  .values-grid .value { grid-column: span 12; }
  .badges-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 560px){
  .badges-grid { grid-template-columns: 1fr; }
}
