/* Homepage — design 1c §1. Layout only; tokens/components come from site.css. */

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(#fff, var(--page-bg));
  padding: 64px 48px 40px;
  display: flex; flex-direction: column; align-items: center; gap: 22px;
  text-align: center;
}
.hero .eyebrow { font-size: 13px; margin: 0; }
.hero h1 {
  font-size: 52px; line-height: 1.06; letter-spacing: -.01em;
  max-width: 20ch; text-wrap: pretty; margin: 0;
}
.hero__sub { font-size: 17px; line-height: 1.6; color: var(--body); max-width: 56ch; margin: 0; }
.hero__cta { display: flex; gap: 12px; }
.hero__cta .btn--primary { font-size: 15px; padding: 14px 28px; }
.hero__cta .btn--secondary { font-size: 15px; padding: 13px 28px; }
.hero__img { width: min(62%, 540px); margin-top: 14px; filter: drop-shadow(0 30px 40px rgba(16, 31, 46, .22)); }

/* ---------- Sector cards ---------- */
.sectors { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 28px 0 8px; }
.sectorcard { display: flex; flex-direction: column; gap: 8px; padding: 26px 26px 24px; }
.sectorcard__img {
  height: 200px; margin-bottom: 10px;
  display: flex; align-items: center; justify-content: center;
}
.sectorcard__img img { max-height: 100%; max-width: 92%; object-fit: contain; }
.sectorcard h2 { font-size: 19px; margin: 0; }
.sectorcard__desc { font-size: 13.5px; line-height: 1.55; color: var(--body); margin: 0; flex: 1; }
.sectorcard__go {
  font-family: var(--font-head); font-size: 13.5px; font-weight: 700;
  color: var(--blue); margin-top: 4px;
}
.sectorcard:hover .sectorcard__go { color: var(--blue-dark); }

/* ---------- Neuheiten ---------- */
.newsec { padding: 44px 0 48px; }
.newsec h2 { font-size: 26px; margin: 0 0 20px; }

/* Trust bar sits directly above the dark footer on this page */
.sitefooter { margin-top: 0; }

/* ---------- Mobile ---------- */
@media (max-width: 767px) {
  .hero { padding: 34px 22px 26px; gap: 14px; }
  .hero h1 { font-size: 30px; line-height: 1.1; }
  .hero__sub { display: none; }
  .hero__cta { flex-direction: column; align-self: stretch; gap: 10px; order: 1; }
  .hero__cta .btn { display: block; width: 100%; }
  .hero__img { width: 86%; margin-top: 0; filter: drop-shadow(0 18px 26px rgba(16, 31, 46, .2)); }
  .sectors { grid-template-columns: 1fr; gap: 10px; padding: 6px 0 8px; }
  .sectorcard { flex-direction: row; align-items: center; gap: 14px; padding: 12px 16px; }
  .sectorcard__img { width: 76px; height: 56px; flex: none; margin-bottom: 0; }
  .sectorcard h2 { font-size: 15px; flex: 1; }
  .sectorcard__desc { display: none; }
  .sectorcard__go { margin-top: 0; }
  .sectorcard__go-label { display: none; }
  .newsec { padding: 20px 0 26px; }
  .newsec h2 { font-size: 19px; margin-bottom: 12px; }
}
