/* ================================================================
   hersteller.css – Shared stylesheet for all 4Networks brand pages
   ================================================================ */

/* ── Hersteller Hero ── */
.hero-area-hersteller {
  min-height: 380px;
  display: flex;
  align-items: center;
}

.hero-hersteller-logo-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Kein filter – Logo ist bereits für dunklen Hintergrund geeignet */
.hero-hersteller-logo {
  max-width: 220px;
  width: 100%;
}

.topherstellerlogo {
  max-width: 250px !important;
  width: 100%;
  margin-bottom: 20px;
}

/* Hero-Badge */
.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

/* ── Stats-Grid ── */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.stat-card {
  flex: 1 1 140px;
  background: #003c71;
  border: none;
  border-radius: 8px;
  padding: 20px 16px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 50, 110, 0.15);
}

.stat-value {
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.stat-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.stat-icon svg {
  width: 28px;
  height: 28px;
  color: rgba(255, 255, 255, 0.7);
}

.stat-label {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 5px;
  font-weight: 500;
}

/* ── Partner-Facts ── */
.partner-facts {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.partner-fact {
  background: #fff;
  border-left: 4px solid #003c71;
  border-radius: 0 6px 6px 0;
  padding: 14px 20px;
  box-shadow: 0 2px 8px rgba(0, 50, 110, 0.07);
}

.partner-fact-value {
  font-weight: 800;
  color: #003c71;
}

.partner-fact-label {
  color: #5a6a7e;
  margin-top: 2px;
  font-weight: 500;
}

/* ── Produkt-Grid ── */
.produkt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
  padding-bottom: 32px;
}

.produkt-card {
  background: #fff;
  border: 1px solid #dde7f2;
  border-radius: 8px;
  padding: 24px 20px;
  box-shadow: 0 2px 10px rgba(0, 50, 110, 0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}


.produkt-card-icon {
  color: #003c71;
  margin-bottom: 12px;
}

.produkt-card h4 {
  font-weight: 700;
  margin: 0 0 8px;
  color: #1a2a3e;
  line-height: 1.3;
}

.produkt-card p {
  color: #4a5a6e;
  margin: 0 0 12px;
  line-height: 1.55;
}

.produkt-card-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.produkt-card-tags li {
  background: #e6eef7;
  color: #4a6a8a;
  font-weight: 500;
  font-size: 0.78em;
  padding: 2px 9px;
  border-radius: 10px;
}

/* ── Use-Case-Grid ── */
.usecase-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
  padding-bottom: 8px;
}

.usecase-card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 8px;
  padding: 24px 20px;
  box-shadow: 0 2px 10px rgba(0, 50, 110, 0.07);
}


.usecase-icon {
  width: 46px;
  height: 46px;
  background: #e6eef7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #003c71;
  margin-bottom: 12px;
}

.usecase-card h4 {
  font-weight: 700;
  margin: 0 0 8px;
  color: #1a2a3e;
}

.usecase-card p {
  color: #4a5a6e;
  margin: 0;
  line-height: 1.55;
}

.usecase-card a {
  color: #003c71;
  font-weight: 600;
  text-decoration: underline;
}

/* ── FAQ ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: #fff;
  border: 1px solid #dde7f2;
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item[open] {
  box-shadow: 0 4px 16px rgba(0, 50, 110, 0.09);
}

.faq-item summary {
  padding: 16px 22px;
  font-weight: 600;
  cursor: pointer;
  color: #1a2a3e;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-weight: 300;
  color: #003c71;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item[open] summary {
  border-bottom: 1px solid #dde7f2;
  color: #003c71;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-answer {
  padding: 16px 22px;
  color: #4a5a6e;
  line-height: 1.65;
}

.faq-answer a {
  color: #003c71;
  font-weight: 600;
  text-decoration: underline;
}

/* ── Checklist (Partner-Section) ── */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checklist li {
  padding: 14px 16px 14px 20px;
  border-left: 4px solid #003c71;
  background: #fff;
  border-radius: 0 6px 6px 0;
  box-shadow: 0 2px 8px rgba(0, 50, 110, 0.06);
}

.checklist li h4 {
  font-weight: 700;
  margin: 0 0 4px;
  color: #1a2a3e;
}

.checklist li p {
  color: #4a5a6e;
  margin: 0;
  line-height: 1.5;
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .hero-hersteller-logo {
    max-width: 150px;
    margin-top: 8px;
  }

  .stats-grid {
    gap: 10px;
  }

  .stat-card {
    flex-basis: calc(50% - 10px);
    padding: 14px 10px;
  }

  .produkt-card,
  .usecase-card {
    flex-basis: 100%;
  }
}

/* ── Hero Button Abstand ── */
.hero-btn-sec {
  margin-right: 12px;
}

/* ── Produkt-Grid: kein eigenes padding-bottom mehr nötig ── */
/* produkt-grid padding override entfernt */

/* ── Pre-Kontakt CTA (dunkelblau) ── */
.cta-dark {
  background: #0a2340;
}

.cta-dark-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}

.cta-dark-text {
  flex: 1 1 340px;
}

.cta-dark-text h2 {
  color: #fff;
  margin-bottom: 12px;
}

.cta-dark-text p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.cta-dark-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cta-dark-list li {
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-dark-list li .fa {
  color: #4da6e8;
  flex-shrink: 0;
}

.cta-dark-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.btn-cta-dark {
  white-space: nowrap;
}

.btn-cta-dark-sec {
  white-space: nowrap;
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.btn-cta-dark-sec:hover {
  border-color: #fff;
  color: #fff;
}

@media (max-width: 767px) {
  .cta-dark-inner {
    flex-direction: column;
    gap: 20px;
  }

  .cta-dark-actions {
    width: 100%;
  }

  .btn-cta-dark,
  .btn-cta-dark-sec {
    width: 100%;
    text-align: center;
  }
}

@media (min-width: 992px) {
  .hero-area {
    margin-bottom: 0px !important;
  }
}

/* ── Inline-Facts (in Fließtext integriert) ── */
.inline-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.inline-fact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f4f8fc;
  border-radius: 8px;
  padding: 18px 16px;
  min-width: 0;
}

.inline-fact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #003c71;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inline-fact-icon svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.inline-fact strong {
  display: block;
  color: #1a2a3e;
  font-weight: 700;
  margin-bottom: 2px;
  line-height: 1.3;
}

.inline-fact span {
  color: #5a6a7e;
  line-height: 1.4;
}

/* ── Bild-Platzhalter ── */
.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 320px;
  background: #f0f5fb;
  border: 2px dashed #b8ccdf;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #7a95b0;
  text-align: center;
  padding: 24px;
}

.img-placeholder svg {
  width: 48px;
  height: 48px;
  color: #a0b8cc;
}

.img-placeholder p {
  margin: 0;
  font-weight: 600;
  color: #7a95b0;
}

.img-placeholder code {
  font-size: 0.8em;
  background: #dde9f4;
  padding: 3px 8px;
  border-radius: 4px;
  color: #5a6a7e;
}

@media (max-width: 991px) {
  .inline-facts {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .inline-facts {
    grid-template-columns: 1fr;
  }
}

/* ── Produkt-Grid responsive ── */
@media (max-width: 991px) {
  .produkt-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .produkt-grid {
    grid-template-columns: 1fr;
  }
}