/* ==========================================================================
   Mewus Beratung · Coaching · Training — Danke-/Vorteilsseite
   Shared Stylesheet für alle Seiten (index + 5 Kategorie-Landingpages)
   Farben laut Corporate Identity:
   Hauptfarben:  #215BA7 (Blau)  #F2911B (Orange)
   Nebenfarben:  #DADADA (Grau) #F20505 (Rot/Akzent) #0D0D0D (Schwarz)
   ========================================================================== */

:root {
  --blue: #215BA7;
  --blue-dark: #163E75;
  --orange: #F2911B;
  --orange-dark: #D97B0A;
  --gray: #DADADA;
  --gray-light: #F4F5F7;
  --red: #F20505;
  --ink: #0D0D0D;
  --navy: #0A1628;
  --navy-2: #0F2038;
  --white: #FFFFFF;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(13, 13, 13, 0.12);
  --shadow-sm: 0 4px 14px rgba(13, 13, 13, 0.08);

  --font: 'Poppins', 'Segoe UI', Roboto, Arial, sans-serif;

  --maxw: 1180px;
  /* Höhe der fixen Sponsor-Bar am oberen Rand (~5-6% der üblichen
     Viewport-Höhe auf Mobile/Desktop) */
  --sponsor-bar-h: 44px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: var(--sponsor-bar-h);
}

img { max-width: 100%; display: block; }

/* ---------- Sponsor-Bar: fixer Frame am oberen Rand, auf jeder Seite ---------- */
.sponsor-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  height: var(--sponsor-bar-h);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.sponsor-bar a {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  letter-spacing: .01em;
  text-align: center;
  padding: 0 16px;
}
.sponsor-bar a strong { color: var(--orange); font-weight: 800; }
.sponsor-bar a:hover { color: var(--white); }
.sponsor-bar a:hover strong { color: var(--orange-dark); }

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 { margin: 0 0 .5em; font-weight: 700; line-height: 1.2; }
p { margin: 0 0 1em; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(242, 145, 27, .12);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow.on-dark { background: rgba(242, 145, 27, .18); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-align: center;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--orange);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(242, 145, 27, .38);
}
.btn-primary:hover { background: var(--orange-dark); box-shadow: 0 10px 28px rgba(242,145,27,.5); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

.btn-block { width: 100%; }
.btn-lg { padding: 18px 34px; font-size: 17px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: var(--sponsor-bar-h);
  z-index: 100;
  background: rgba(10, 22, 40, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.site-header .logo img { height: 40px; width: auto; }
.header-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 13px;
  font-weight: 600;
}
.header-badge svg { width: 18px; height: 18px; flex: none; fill: var(--orange); }
.header-badge span.hide-mobile { display: inline; }
.header-badge span.show-mobile { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(120% 120% at 100% 0%, var(--navy-2) 0%, var(--navy) 55%, #060d18 100%);
  color: var(--white);
  overflow: hidden;
  padding: 56px 0 40px;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(30px, 5vw, 48px);
  margin-bottom: .35em;
}
.hero-copy h1 .accent { color: var(--orange); }
.hero-copy p.lead {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,.82);
  max-width: 46ch;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-trust .stat b {
  display: block;
  font-size: 24px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-trust .stat span { font-size: 13px; color: rgba(255,255,255,.7); }

.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-media .frame {
  position: relative;
  width: 100%;
  max-width: 360px;
}
.hero-media img.portrait {
  width: 100%;
  border-radius: 24px;
  position: relative;
  z-index: 2;
}
.hero-media .glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(242,145,27,.35), transparent 70%);
  z-index: 1;
  filter: blur(10px);
}
.hero-media .pin {
  position: absolute;
  z-index: 3;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-media .pin.pin-top { top: 4%; left: -8%; }
.hero-media .pin.pin-bottom { bottom: 6%; right: -10%; background: var(--orange); color: var(--ink); }
.hero-media .pin b { color: var(--blue); }
.hero-media .pin.pin-bottom b { color: var(--ink); }

/* ---------- Ticker / mini value bar ---------- */
.value-bar {
  background: var(--blue);
  color: var(--white);
}
.value-bar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 34px;
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
.value-bar .item { display: flex; align-items: center; gap: 8px; }
.value-bar .item svg { width: 16px; height: 16px; fill: var(--orange); flex: none; }

/* ---------- Section basics ---------- */
.section { padding: 72px 0; }
.section-alt { background: var(--gray-light); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 46px; }
.section-head h2 { font-size: clamp(26px, 4vw, 36px); color: var(--ink); }
.section-head p { color: #4b4b4b; font-size: 17px; }

/* ---------- Category cards (main page) ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
  position: relative;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card .badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--red);
  color: var(--white);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(242,5,5,.35);
}
.card .icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: rgba(33, 91, 167, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card .icon-wrap svg { width: 28px; height: 28px; fill: var(--blue); }
.card h3 { font-size: 20px; }
.card p { color: #555; font-size: 15px; flex-grow: 1; }
.card .card-stat {
  font-weight: 800;
  color: var(--blue);
  font-size: 14px;
  margin-bottom: 10px;
}
.card .card-link {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--orange-dark);
  font-size: 15px;
}
.card .card-link svg { width: 16px; height: 16px; fill: currentColor; transition: transform .15s ease; }
.card:hover .card-link svg { transform: translateX(4px); }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.step {
  text-align: center;
  padding: 10px;
}
.step .num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--orange);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 18px;
}
.step h4 { font-size: 17px; }
.step p { color: #555; font-size: 14.5px; }

/* ---------- Benefit list ---------- */
.benefit-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.benefit-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
}
.benefit-list li svg { width: 20px; height: 20px; fill: var(--orange); flex: none; margin-top: 2px; }
.benefit-list li b { color: var(--blue); }

/* ---------- Signup / form ---------- */
.signup {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
  border-radius: 24px;
  padding: 46px 34px;
  position: relative;
  overflow: hidden;
}
.signup:before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(242,145,27,.25), transparent 70%);
  top: -120px;
  right: -100px;
}
.signup .container-inner { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; text-align: center; }
.signup h2 { font-size: clamp(24px, 3.4vw, 32px); }
.signup p.lead { color: rgba(255,255,255,.82); font-size: 16px; }

.form-row { display: flex; flex-direction: column; gap: 14px; margin-top: 26px; }
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}
.form-field label { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.85); }
.form-field input {
  padding: 15px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
}
.form-field input::placeholder { color: rgba(255,255,255,.45); }
.form-field input:focus { outline: 2px solid var(--orange); background: rgba(255,255,255,.1); }

.form-consent { display: flex; gap: 10px; align-items: flex-start; text-align: left; font-size: 12.5px; color: rgba(255,255,255,.65); margin-top: 6px; }
.form-consent input { margin-top: 3px; }

.form-note { font-size: 12.5px; color: rgba(255,255,255,.55); margin-top: 16px; }
.form-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 20px; font-size: 12.5px; color: rgba(255,255,255,.7); }
.form-trust span { display: flex; align-items: center; gap: 6px; }
.form-trust svg { width: 14px; height: 14px; fill: var(--orange); }

.form-success {
  display: none;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-top: 20px;
  font-size: 14px;
}
.form-success.visible { display: block; }

/* ---------- Testimonial / proof ---------- */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.proof-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.proof-card .stars { color: var(--orange); font-size: 15px; margin-bottom: 10px; letter-spacing: 2px; }
.proof-card p { font-size: 14.5px; color: #444; font-style: italic; }
.proof-card .who { display: flex; align-items: center; gap: 10px; margin-top: 14px; }
.proof-card .who .avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--blue); color: var(--white); font-weight: 700;
  display: flex; align-items: center; justify-content: center; font-size: 14px;
}
.proof-card .who .name { font-weight: 700; font-size: 13.5px; }
.proof-card .who .role { font-size: 12px; color: #777; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e4e4e4; }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 4px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { color: var(--orange); font-size: 22px; transition: transform .2s ease; flex: none; }
.faq-item[open] summary .plus { transform: rotate(45deg); }
.faq-item p { padding: 0 4px 18px; color: #555; font-size: 14.5px; }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin-bottom: 18px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.breadcrumb a { color: rgba(255,255,255,.85); font-weight: 600; }
.breadcrumb a:hover { color: var(--orange); }

/* ---------- Cross-link cards on category pages ---------- */
.mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.mini-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius-sm);
  padding: 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease;
}
.mini-card:hover { transform: translateY(-4px); }
.mini-card .icon-wrap { width: 42px; height: 42px; margin: 0 auto 10px; background: rgba(33,91,167,.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.mini-card .icon-wrap svg { width: 22px; height: 22px; fill: var(--blue); }
.mini-card span { font-size: 13.5px; font-weight: 700; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 46px 0 24px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-top img { height: 34px; margin-bottom: 12px; }
.footer-logo-img {
  height: 34px;
  background: var(--white);
  padding: 8px 12px;
  border-radius: 8px;
}
.footer-top p { font-size: 13.5px; max-width: 320px; color: rgba(255,255,255,.55); }
.footer-cols { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col h5 { color: var(--white); font-size: 14px; margin-bottom: 12px; }
.footer-col a { display: block; font-size: 13.5px; color: rgba(255,255,255,.6); margin-bottom: 8px; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 22px;
  font-size: 12.5px;
  color: rgba(255,255,255,.45);
}

/* ==========================================================================
   Katalog-Startseite (index.html) — Top-Tabs, Zielgruppen-Filter, Kacheln
   ========================================================================== */

/* ---------- Intro-Banner (kompakt, ersetzt großen Hero) ---------- */
.intro-banner {
  background: radial-gradient(120% 160% at 100% 0%, var(--navy-2) 0%, var(--navy) 55%, #060d18 100%);
  color: var(--white);
  padding: 40px 0 34px;
}
.intro-banner .container {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
}
.intro-banner .intro-text h1 {
  font-size: clamp(24px, 3.4vw, 34px);
  margin-bottom: .3em;
}
.intro-banner .intro-text h1 .accent { color: var(--orange); }
.intro-banner .intro-text p {
  color: rgba(255,255,255,.8);
  font-size: 15.5px;
  max-width: 56ch;
  margin: 0;
}
.intro-banner .intro-photo {
  flex: none;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(242,145,27,.6);
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.intro-banner .intro-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
}

/* ---------- Toolbar: Kategorie-Navigation + Zielgruppen-Auswahlfeld ---------- */
.catalog-toolbar {
  position: sticky;
  top: calc(var(--sponsor-bar-h) + 65px);
  z-index: 90;
  background: var(--white);
  border-bottom: 1px solid #ececec;
  box-shadow: 0 2px 10px rgba(0,0,0,.03);
}
.catalog-toolbar .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1;
  min-width: 240px;
}
.tabs::-webkit-scrollbar { display: none; }
.tab {
  flex: none;
  font-family: var(--font);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1.5px solid #e2e2e2;
  background: var(--white);
  color: #444;
  cursor: pointer;
  transition: all .15s ease;
  white-space: nowrap;
}
.tab:hover { border-color: var(--blue); color: var(--blue); }
.tab.active { background: var(--navy); border-color: var(--navy); color: var(--white); }

.audience-field {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}
.audience-field label {
  font-size: 12.5px;
  font-weight: 700;
  color: #666;
  text-transform: uppercase;
  letter-spacing: .04em;
  white-space: nowrap;
}
.audience-field select {
  font-family: var(--font);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  padding: 10px 34px 10px 14px;
  border-radius: 999px;
  border: 1.5px solid #e2e2e2;
  background: var(--white) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23215BA7"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 10px center;
  background-size: 18px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  max-width: 220px;
}
.audience-field select:focus { outline: 2px solid var(--blue); }

/* ---------- Layout: Empfehlung links + Kachel-Grid ---------- */
.catalog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
  padding: 34px 0 72px;
}

.sidebar {
  position: sticky;
  top: calc(var(--sponsor-bar-h) + 128px);
}

/* ---------- Empfehlung ---------- */
.reco-card {
  background: var(--white);
  border: 2px solid var(--orange);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.reco-card .eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  gap: 6px;
}
.reco-body { display: flex; gap: 14px; margin-bottom: 16px; }
.reco-body .icon-wrap { width: 46px; height: 46px; flex: none; }
.reco-body .icon-wrap svg { width: 22px; height: 22px; }
.reco-text h3 { font-size: 16px; margin: 2px 0 4px; }
.reco-text p { font-size: 13.5px; color: #555; margin: 0; }
.reco-text .card-stat { font-size: 12.5px; }

/* ---------- Kachel-Frame / Grid der gewählten Kategorie ---------- */
.catalog-main .result-count {
  font-size: 13.5px;
  color: #777;
  margin-bottom: 16px;
}
.catalog-frame { min-height: 160px; }
/* Einzelne Kategorie: immer nur 1 Kachel pro Reihe, alle weiteren darunter */
.catalog-frame .cards-grid { grid-template-columns: 1fr; max-width: 640px; }
/* "Alle Vorteile": max. 2 Kacheln nebeneinander auf großen Displays */
.catalog-frame .cards-grid.cards-grid-all { grid-template-columns: repeat(2, 1fr); max-width: none; }

.badge-orange { background: var(--orange); box-shadow: 0 4px 10px rgba(242,145,27,.35); }
.badge-red { background: var(--red); box-shadow: 0 4px 10px rgba(242,5,5,.35); }
.badge-blue { background: var(--blue); box-shadow: 0 4px 10px rgba(33,91,167,.35); }

.empty-state {
  display: none;
  text-align: center;
  padding: 60px 20px;
  color: #777;
  background: var(--gray-light);
  border-radius: var(--radius);
}
.empty-state svg { width: 40px; height: 40px; fill: #bbb; margin-bottom: 14px; }
.empty-state p { margin: 0; font-size: 15px; }

/* ==========================================================================
   Newsletter-Formular (formular_mailinglist.html) — echtes SuperMailer-
   Formular, nur Optik angepasst. Feldnamen/IDs/Werte bleiben unverändert.
   ========================================================================== */
.mlform-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 34px;
}
.mlform-section { margin-bottom: 30px; }
.mlform-section:last-of-type { margin-bottom: 0; }
.mlform-section-title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--blue);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}
.mlform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}
.mlform-field { display: flex; flex-direction: column; gap: 6px; }
.mlform-field--wide { grid-column: 1 / -1; }
.mlform-field label {
  font-size: 13.5px;
  font-weight: 700;
  color: #333;
}
.mlform-field .req { color: var(--red); }
.mlform-field input[type="text"],
.mlform-field select {
  font-family: var(--font);
  font-size: 15px;
  color: var(--ink);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid #ddd;
  background: var(--white);
  width: 100%;
}
.mlform-field input[type="text"]:focus,
.mlform-field select:focus { outline: 2px solid var(--blue); border-color: var(--blue); }

.mlform-choice-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; min-height: 44px; }
.mlform-choice {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
}
.mlform-choice input { accent-color: var(--blue); width: 17px; height: 17px; }

.mlform-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.mlform-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 600;
  color: #333;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid #e2e2e2;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.mlform-chip:has(input:checked) { border-color: var(--blue); background: rgba(33,91,167,.06); }
.mlform-chip input { accent-color: var(--blue); width: 16px; height: 16px; flex: none; }

.mlform-hint { font-size: 13.5px; color: #555; margin-bottom: 12px; }
.mlform-captcha { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.mlform-captcha-input {
  font-family: var(--font);
  font-size: 15px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid #ddd;
  max-width: 220px;
}
.mlform-captcha-input:focus { outline: 2px solid var(--blue); border-color: var(--blue); }
.mlform-captcha-img { height: 44px; width: auto; border-radius: 6px; border: 1px solid #eee; }
.mlform-captcha-refresh {
  font-size: 22px;
  color: var(--blue);
  text-decoration: none;
  line-height: 1;
}
.mlform-captcha-refresh:hover { color: var(--orange); }

.mlform-legal { font-size: 12.5px; color: #666; line-height: 1.6; margin-bottom: 14px; }
.mlform-legal a { color: var(--blue); text-decoration: underline; }
.mlform-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #333;
  cursor: pointer;
}
.mlform-consent input { margin-top: 3px; accent-color: var(--blue); width: 17px; height: 17px; flex: none; }
.mlform-consent a { color: var(--blue); text-decoration: underline; }

.mlform-required-note { font-size: 12px; color: #888; margin: 16px 0 0; text-align: center; }

/* ---------- Bottom community CTA strip ---------- */
.cta-strip {
  background: var(--blue);
  color: var(--white);
  padding: 34px 0;
  text-align: center;
}
.cta-strip h3 { font-size: 20px; margin-bottom: 6px; }
.cta-strip p { color: rgba(255,255,255,.85); font-size: 14.5px; margin-bottom: 20px; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--white);
  box-shadow: 0 -6px 20px rgba(0,0,0,.12);
  padding: 12px 16px;
  display: none;
  align-items: center;
  justify-content: center;
}
.sticky-cta .btn { width: 100%; }

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-30 { margin-top: 30px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .catalog-toolbar .container { flex-direction: column; align-items: stretch; }
  .audience-field { width: 100%; }
  .audience-field select { max-width: none; flex: 1; }
  /* "Alle Vorteile" nur noch 1 Spalte unterhalb der großen Displays */
  .catalog-frame .cards-grid.cards-grid-all { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .mini-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-media { order: -1; margin-bottom: 10px; }
  .hero-media .frame { max-width: 260px; }
  .intro-banner .container { flex-direction: column; text-align: center; gap: 16px; }
  .intro-banner .intro-text p { max-width: 100%; }
}

/* Ab hier "Handy"-Ansicht: Empfehlung wird zum ersten Eintrag über den
   Kacheln (kein eigener Sidebar-Bereich mehr), 1 Kachel je Reihe */
@media (max-width: 767px) {
  .catalog-layout { grid-template-columns: 1fr; padding-top: 24px; gap: 20px; }
  .sidebar { position: static; }
  .catalog-frame .cards-grid { grid-template-columns: 1fr; }
  .mlform-grid { grid-template-columns: 1fr; }
  .mlform-checkbox-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .section { padding: 52px 0; }
  .cards-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .mini-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 36px 0 90px; }
  .hero-trust { gap: 16px 26px; }
  .header-badge span.hide-mobile { display: none; }
  .header-badge span.show-mobile { display: inline; }
  .signup { padding: 34px 20px; border-radius: 18px; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 70px; }
  .hero-media .pin { font-size: 11.5px; padding: 8px 10px; }
  .hero-media .pin.pin-top { left: -4%; }
  .hero-media .pin.pin-bottom { right: -4%; }

  .intro-banner { padding: 28px 0 24px; }
  .intro-banner .intro-photo { width: 72px; height: 72px; }
  .catalog-toolbar .container { padding-top: 10px; padding-bottom: 10px; }
  .tab { padding: 9px 14px; font-size: 13px; }
  .audience-field select { max-width: none; flex: 1; }
  .audience-field { width: 100%; }

  .mlform-card { padding: 22px 18px; }
  .mlform-checkbox-grid { grid-template-columns: 1fr; }
  .mlform-captcha { flex-direction: column; align-items: flex-start; }
}
