/* ADDITIONS.CSS – Ergänzungen zum Content-Plan: Stats, Auszeichnungen/Verbände, Review-CTA, erweiterter Footer */
/* Nutzt bewusst dieselben CSS-Variablen wie style.css (--forest, --deep, --sand, --cream, --paper, --serif, --sans) */

/* Stats-Leiste */
.stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  background:var(--deep);
  color:#fff;
  padding:46px clamp(22px,6vw,90px);
  gap:20px;
  text-align:center;
}
.stats .stat strong{
  display:block;
  font-family:var(--serif);
  font-size:clamp(1.8rem,3vw,2.6rem);
  color:var(--sand);
  font-weight:500;
}
.stats .stat span{
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.7rem;
  color:#cfd6d0;
}

/* Auszeichnungen & Verbände */
.trust-badges{ background:var(--paper); }
.trust-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:6vw;
  align-items:start;
}
.awards-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.award-chip{
  display:inline-block;
  background:var(--cream);
  border:1px solid var(--line);
  color:var(--forest);
  font-size:.8rem;
  font-weight:600;
  padding:10px 18px;
  border-radius:999px;
}
.memberships{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:18px;
}
.memberships li{
  border-top:1px solid var(--line);
  padding-top:18px;
  font-size:.95rem;
  color:#4b4f47;
}
.memberships li:first-child{ border-top:0; padding-top:0; }
.memberships a{ color:var(--forest); font-weight:700; text-decoration:underline; }

/* Review CTA */
.review-cta{ background:var(--sand); text-align:center; }
.review-inner{ max-width:640px; margin:0 auto; }
.review-inner p:not(.eyebrow){ margin:18px auto 28px; max-width:52ch; }
.review-cta h2{ font-size:clamp(2.2rem,3.6vw,3.4rem); }
.review-cta em{ color:var(--paper); }

/* Erweiterter Footer */
.site-footer{
  background:#1b2922;
  color:#bec8c1;
  padding:60px 7vw 28px;
  display:block;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.3fr 1fr 1.4fr 1fr;
  gap:36px;
  padding-bottom:40px;
}
.footer-brand img{
  width:170px;
  filter:brightness(0) invert(1);
  opacity:.85;
  margin-bottom:14px;
}
.footer-brand p{ font-size:.85rem; max-width:30ch; color:#9aa59d; }
.footer-col h4{
  font-family:var(--sans);
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:.7rem;
  color:var(--sand);
  margin:0 0 16px;
}
.footer-col{ display:flex; flex-direction:column; gap:10px; font-size:.85rem; }
.footer-col a:hover{ color:#fff; }
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  padding-top:22px;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:12px;
  font-size:.78rem;
}
.footer-bottom div{ display:flex; gap:24px; }

@media (max-width:900px){
  .stats{ grid-template-columns:repeat(2,1fr); }
  .trust-grid{ grid-template-columns:1fr; gap:32px; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width:560px){
  .footer-grid{ grid-template-columns:1fr; }
}
