/*
 * Werbebanner "make better GmbH / ConsumerHub" in der make-better.de Corporate Identity.
 * CI-Tokens (von make-better.de): Schwarz #0a0a0a, Creme #f8f7f4, Cyan #00d4d4 / Hover #00b8b8,
 * Serif "Libre Baskerville" (Headline), Sans "Source Sans 3" (Text), Mono "JetBrains Mono" (Eyebrow).
 */

/* make-better CI als (namespaced) globale Tokens — von make-better.de übernommen */
:root {
  --mb-black: #0a0a0a;
  --mb-cream: #f8f7f4;
  --mb-cyan: #00d4d4;
  --mb-cyan-hover: #00b8b8;
  --mb-grey: #5a5a5a;
  --mb-serif: "Libre Baskerville", Georgia, serif;
  --mb-sans: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  --mb-mono: "JetBrains Mono", ui-monospace, monospace;
}

.mb-banner {
  position: relative;
  overflow: hidden;
  margin-top: 28px;
  padding: clamp(26px, 4vw, 40px);
  border-radius: 18px;
  background: var(--mb-black);
  color: var(--mb-cream);
  font-family: var(--mb-sans);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 56px);
  flex-wrap: wrap;
}

/* Dezenter Cyan-Schein als Akzent */
.mb-banner-glow {
  position: absolute;
  top: -40%;
  right: -10%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(0, 212, 212, .22), transparent 62%);
  pointer-events: none;
}

.mb-banner-main {
  position: relative;
  flex: 1 1 340px;
  min-width: 0;
}

.mb-eyebrow {
  display: inline-block;
  font-family: var(--mb-mono);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--mb-cyan);
  margin-bottom: 16px;
}

.mb-headline {
  font-family: var(--mb-serif);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.22;
  margin: 0 0 12px;
  color: var(--mb-cream);
}

.mb-accent {
  color: var(--mb-cyan);
}

.mb-sub {
  margin: 0;
  max-width: 540px;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(248, 247, 244, .66);
}

.mb-sub strong {
  color: var(--mb-cream);
  font-weight: 600;
}

/* Rechte Spalte: Wordmark + CTA */
.mb-banner-aside {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.mb-logo {
  font-family: var(--mb-serif);
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: -.01em;
  line-height: 1;
  color: var(--mb-cream);
}

.mb-plus {
  color: var(--mb-cyan);
}

/* CTA als 1:1-Replik des make-better .btn-primary */
.mb-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--mb-sans);
  font-size: 1rem;
  font-weight: 500;
  border-radius: 48px;
  padding: .9rem 2rem;
  background: var(--mb-cyan);
  color: var(--mb-black);
  text-decoration: none;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.mb-cta:hover {
  background: var(--mb-cyan-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 212, 212, .2);
}

.mb-cta:focus-visible {
  outline: 2px solid var(--mb-cyan);
  outline-offset: 3px;
}

.mb-link {
  font-family: var(--mb-mono);
  font-size: .82rem;
  letter-spacing: .04em;
  color: rgba(248, 247, 244, .7);
  text-decoration: none;
  transition: color .15s ease;
}

.mb-link:hover {
  color: var(--mb-cyan);
}

@media (max-width: 720px) {
  .mb-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .mb-banner-aside {
    align-self: stretch;
  }
  .mb-cta {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   ConsumerHub – allgemeine Werbesektion (über dem Footer)
   ============================================================ */
.ch-promo {
  position: relative;
  overflow: hidden;
  background: var(--mb-black);
  color: var(--mb-cream);
  font-family: var(--mb-sans);
  padding: clamp(56px, 9vw, 100px) 0;
}

.ch-promo-glow {
  position: absolute;
  top: -260px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 212, .16), transparent 60%);
  pointer-events: none;
}

.ch-promo-inner {
  position: relative;
}

.ch-promo-head {
  max-width: 760px;
}

.ch-eyebrow {
  display: inline-block;
  font-family: var(--mb-mono);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(248, 247, 244, .65);
  margin-bottom: 22px;
}

.ch-eyebrow .mb-plus {
  color: var(--mb-cyan);
}

.ch-headline {
  font-family: var(--mb-serif);
  font-weight: 400;
  font-size: clamp(1.7rem, 3.4vw, 2.8rem);
  line-height: 1.18;
  margin: 0 0 18px;
  color: var(--mb-cream);
}

.ch-accent {
  color: var(--mb-cyan);
}

.ch-lede {
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.6;
  color: rgba(248, 247, 244, .68);
}

.ch-lede strong {
  color: var(--mb-cream);
  font-weight: 600;
}

/* USP-Spalten */
.ch-usps {
  margin-top: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(20px, 2.5vw, 34px);
}

.ch-usp {
  padding-top: 22px;
  border-top: 1px solid rgba(248, 247, 244, .16);
}

.ch-usp-label {
  display: block;
  font-family: var(--mb-mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mb-cyan);
  margin-bottom: 12px;
}

.ch-usp-title {
  font-family: var(--mb-serif);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.25;
  margin: 0 0 8px;
  color: var(--mb-cream);
}

.ch-usp-text {
  margin: 0;
  font-size: .95rem;
  line-height: 1.55;
  color: rgba(248, 247, 244, .62);
}

/* Modul-Liste */
.ch-modules {
  margin-top: clamp(40px, 5vw, 64px);
}

.ch-modules-label {
  display: block;
  font-family: var(--mb-serif);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  color: var(--mb-cream);
  margin-bottom: 20px;
}

.ch-module-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ch-module-list li {
  font-family: var(--mb-mono);
  font-size: .82rem;
  letter-spacing: .02em;
  color: rgba(248, 247, 244, .82);
  padding: 8px 14px;
  border: 1px solid rgba(248, 247, 244, .18);
  border-radius: 999px;
  transition: border-color .15s ease, color .15s ease;
}

.ch-module-list li:hover {
  border-color: var(--mb-cyan);
  color: var(--mb-cyan);
}

/* CTA-Zeile */
.ch-promo-cta {
  margin-top: clamp(44px, 5vw, 64px);
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

@media (max-width: 620px) {
  .ch-promo-cta .mb-cta {
    width: 100%;
    justify-content: center;
  }
}
