/* ── Unternehmens-Trust-Strip ─────────────────────────────────────── */
.trust-strip {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 18px var(--px);
}

.trust-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.trust-logo {
  height: 28px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.trust-sep {
  width: 1px;
  height: 28px;
  background: var(--border-strong);
  flex-shrink: 0;
}

.trust-claim {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
}

.trust-claim strong { color: var(--text-primary); }

@media (max-width: 768px) {
  .trust-strip { padding: 14px var(--px-sm); }
  .trust-sep { display: none; }
  .trust-strip-inner { flex-wrap: wrap; gap: 12px; }
}

/* ── Startseite: Produkt-Übersicht ───────────────────────────────── */
.products-section {
  padding: 96px var(--px);
  background: var(--bg-page);
}

.products-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-head {
  margin-bottom: 48px;
  max-width: 64ch;
}

.section-head .copy-head { margin-bottom: 10px; }
.section-head h2 { margin-bottom: 12px; }
.section-head p { font-size: 16px; color: var(--text-secondary); line-height: 1.6; }

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

/* ── Zahlen / Kennzahlen ─────────────────────────────────────────── */
.stats-section {
  padding: 64px var(--px);
  background: #37383A;
  color: #fff;
}

@media (prefers-color-scheme: dark) {
  .stats-section { background: #1A1D25; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
}

.stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  /* minmax(0,1fr): Spalten dürfen schmaler werden als ihr Inhalt,
     sonst dehnen lange Wörter (z. B. QUALITÄTSZERTIFIZIERT) das Grid
     über den Viewport hinaus */
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.1);
}

.stat-item {
  padding: 36px 32px;
  background: transparent;
}

.stat-item .num {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1;
  color: #fff;
  margin-bottom: 8px;
  overflow-wrap: break-word;
}

.stat-item .num .blue { color: #5BB8FF; }
.stat-item .num .red  { color: #F06FA0; }

.stat-item .label {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 600;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* ── Features Grid (3-spaltig) ────────────────────────────────────── */
.features-section {
  padding: 96px var(--px);
  background: var(--bg-surface);
}

.features-inner { max-width: var(--max-width); margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 48px;
}

/* ── Case Study Teaser ────────────────────────────────────────────── */
.case-teaser {
  padding: 96px var(--px);
  background: var(--bg-page);
}

.case-teaser-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.case-card {
  background: var(--bg-card);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.case-card .case-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--at-red);
}

.case-card h3 {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1.1;
  color: var(--text-primary);
}

.case-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}

.case-card .case-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--at-blue);
}

.case-card .case-link:hover { color: var(--at-dark-blue); }
.case-card .case-link svg { width: 14px; height: 14px; }

/* Responsive */
@media (max-width: 1024px) {
  .products-grid  { grid-template-columns: 1fr; }
  .stats-inner    { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .features-grid  { grid-template-columns: repeat(2, 1fr); }
  .case-teaser-inner { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .products-section,
  .features-section,
  .case-teaser { padding: 64px var(--px-sm); }
  .stats-section { padding: 48px var(--px-sm); }
  .stats-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat-item { padding: 24px 16px; }
  .stat-item .num { font-size: clamp(30px, 9.5vw, 40px); }
  .features-grid { grid-template-columns: 1fr; }
}
