/* ============================================================
   nachfolgimindo — Styles auf Basis des mindo-Design-Systems
   Farben: Orange #FF9500 (CTA), Navy #1E2A5A, Violett #7B2FF7
   (Akzent), Blau #2E7CF6 (Links). KEIN Grün, KEIN Rot.
   Schrift: Nunito.
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap');

:root {
  --orange:      #FF9500;
  --orange-soft: #FFF1DC;
  --navy:        #1E2A5A;
  --navy-2:      #2A3A75;
  --violet:      #7B2FF7;
  --violet-soft: #F0E7FE;
  --blue:        #2E7CF6;
  --blue-soft:   #E3EEFE;
  --ink:         #1D2433;
  --gray:        #5B6472;
  --border:      #E6E9F2;
  --bg:          #FFFFFF;
  --bg-soft:     #F7F8FC;
  --gradient:    linear-gradient(90deg, #7B2FF7 0%, #FF9500 60%, #2E7CF6 100%);
  --radius: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Nunito', 'Segoe UI', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */
header.site {
  background: var(--navy);
  color: #fff;
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
header.site .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 1.3rem; font-weight: 900; color: #fff; text-decoration: none;
}
.logo img { width: 46px; height: 46px; display: block; }
.logo span { color: var(--orange); }
nav.main { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 20px; }
nav.main a {
  color: #C7CDE4;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.97rem;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}
nav.main a:hover, nav.main a.active { color: #fff; border-bottom-color: var(--orange); }
nav.main a.nav-cta {
  background: var(--orange); color: #fff; border: none;
  border-radius: 999px; padding: 8px 20px;
}
nav.main a.nav-cta:hover { filter: brightness(0.95); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 55%, var(--violet) 160%);
  color: #fff;
  padding: 72px 0 84px;
}
.hero h1 { font-size: 2.6rem; line-height: 1.2; font-weight: 900; max-width: 740px; }
.hero h1 em { font-style: normal; color: var(--orange); }
.hero p.sub { font-size: 1.2rem; color: #DDE3F5; max-width: 660px; margin-top: 16px; }
.hero .cta-row { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 18px; font-size: 0.8rem; color: #AEB7D8; }

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform .15s, filter .15s;
}
.btn:hover { transform: translateY(-1px); filter: brightness(0.95); }
.btn-primary { background: var(--orange); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.55); }
.btn-ghost:hover { border-color: #fff; }
.btn-navy { background: var(--navy); color: #fff; }

/* ---------- Sections ---------- */
section.block { padding: 64px 0; }
section.block.alt { background: var(--bg-soft); }
.block h2 { font-size: 1.9rem; font-weight: 900; color: var(--navy); margin-bottom: 8px; }
.title-bar { width: 56px; height: 4px; border-radius: 4px; background: var(--gradient); margin: 10px 0 18px; }
.block p.lead { color: var(--gray); font-size: 1.08rem; max-width: 720px; margin-bottom: 36px; }

.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 6px 24px rgba(30,42,90,.07);
  padding: 28px 26px;
}
.card .step-nr {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange); color: #fff;
  font-weight: 900; font-size: 1.15rem; margin-bottom: 14px;
}
.card h3 { color: var(--navy); font-size: 1.15rem; font-weight: 800; margin-bottom: 8px; }
.card p { color: var(--gray); font-size: 0.97rem; }
.card ul { margin: 12px 0 4px 20px; color: var(--gray); font-size: 0.97rem; }
.card li { margin-bottom: 6px; }

/* Zielgruppen-Split */
.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.split .card.buyer { border-top: 5px solid var(--violet); }
.split .card.seller { border-top: 5px solid var(--orange); }
.split ul { margin: 12px 0 20px 20px; color: var(--gray); }
.split li { margin-bottom: 6px; }

/* ---------- Inserate ---------- */
.listing {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 6px 24px rgba(30,42,90,.06);
  padding: 24px;
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
}
.listing .tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.tag { font-size: 0.78rem; font-weight: 800; padding: 3px 12px; border-radius: 999px; }
.tag.branche { background: var(--violet-soft); color: var(--violet); }
.tag.region { background: var(--blue-soft); color: var(--navy); }
.tag.demo { background: var(--orange-soft); color: #9A5B00; border: 1px dashed var(--orange); }
.listing h3 { color: var(--navy); font-size: 1.2rem; font-weight: 800; margin-bottom: 6px; }
.listing p.desc { color: var(--gray); font-size: 0.96rem; max-width: 640px; }
.listing .facts { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 14px; }
.listing .fact strong { display: block; color: var(--navy); font-size: 0.98rem; }
.listing .fact span { color: var(--gray); font-size: 0.82rem; }
.listing .side { text-align: right; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.anon-note { font-size: 0.8rem; color: var(--gray); display: inline-flex; align-items: center; gap: 6px; }

.filterbar {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px; margin-bottom: 28px; display: flex; gap: 14px; flex-wrap: wrap; align-items: end;
}
.filterbar label { font-size: 0.82rem; font-weight: 800; color: var(--navy); display: block; margin-bottom: 4px; }
.filterbar select {
  font-family: inherit; padding: 9px 12px; border: 1px solid var(--border); border-radius: 8px;
  background: #fff; color: var(--ink); min-width: 170px; font-size: 0.95rem;
}

/* ---------- Formulare ---------- */
form.profile {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: 0 6px 24px rgba(30,42,90,.06);
  padding: 34px; max-width: 760px;
}
fieldset { border: none; margin-bottom: 30px; }
fieldset legend {
  font-weight: 900; color: var(--navy); font-size: 1.15rem; margin-bottom: 16px;
  border-left: 4px solid var(--orange); padding-left: 10px;
}
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; margin-bottom: 18px; }
.field label { display: block; font-weight: 800; font-size: 0.9rem; color: var(--navy); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 0.98rem; color: var(--ink);
  padding: 11px 13px; border: 1px solid var(--border); border-radius: 9px; background: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--orange); border-color: var(--orange);
}
.field .hint { font-size: 0.8rem; color: var(--gray); margin-top: 4px; }
.checks label { display: flex; align-items: flex-start; gap: 10px; font-weight: 600; color: var(--ink); margin-bottom: 8px; font-size: 0.95rem; }
.checks input { width: 18px; height: 18px; accent-color: var(--blue); margin-top: 3px; flex-shrink: 0; }
.hp-field { position: absolute; left: -9999px; top: -9999px; height: 0; width: 0; overflow: hidden; }

.form-feedback { margin-top: 18px; display: none; }
.form-feedback.show { display: block; }

/* ---------- Hinweise ---------- */
.notice {
  background: var(--blue-soft); border-left: 5px solid var(--blue); border-radius: 0 10px 10px 0;
  padding: 16px 20px; color: var(--navy); font-size: 0.95rem; margin-bottom: 28px; max-width: 820px;
}
.notice.orange { background: var(--orange-soft); border-left-color: var(--orange); color: #7A4A00; }
.notice.violet { background: var(--violet-soft); border-left-color: var(--violet); color: var(--navy); }
.notice a { color: var(--blue); font-weight: 800; }

/* ---------- Preise ---------- */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; max-width: 820px; }
.price-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: 0 6px 24px rgba(30,42,90,.07); padding: 32px 28px;
  display: flex; flex-direction: column;
}
.price-card.highlight { border-top: 5px solid var(--orange); }
.price-card.calm { border-top: 5px solid var(--violet); }
.price-card .price { font-size: 2.2rem; font-weight: 900; color: var(--navy); margin: 10px 0 2px; }
.price-card .price small { font-size: 1rem; font-weight: 700; color: var(--gray); }
.price-card .per { color: var(--gray); font-size: 0.9rem; margin-bottom: 14px; }
.price-card ul { margin: 0 0 22px 20px; color: var(--gray); font-size: 0.97rem; flex: 1; }
.price-card li { margin-bottom: 7px; }
.price-card .btn { align-self: flex-start; }

/* ---------- Rechtstexte ---------- */
.legal { max-width: 780px; padding-top: 48px; padding-bottom: 60px; }
.legal h1 { color: var(--navy); font-size: 2rem; font-weight: 900; margin-bottom: 18px; }
.legal h2 { color: var(--navy); font-size: 1.25rem; font-weight: 800; margin: 28px 0 8px; }
.legal p, .legal li { color: var(--ink); font-size: 0.98rem; }
.legal ul { margin: 8px 0 8px 22px; }
.legal a { color: var(--blue); }

/* ---------- Footer ---------- */
footer.site {
  background: var(--navy); color: #AEB7D8; padding: 38px 0; margin-top: 40px; font-size: 0.9rem;
}
footer.site .container { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; align-items: center; }
footer.site nav { display: flex; flex-wrap: wrap; gap: 6px 18px; }
footer.site a { color: #C7CDE4; text-decoration: none; }
footer.site a:hover { color: #fff; }

/* Stat-Zeile */
.stats { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 44px; }
.stats .stat strong { display: block; font-size: 1.9rem; font-weight: 900; color: var(--orange); }
.stats .stat span { color: #C7CDE4; font-size: 0.92rem; max-width: 240px; display: block; }

/* Ablauf-Diagramm (so-funktionierts) */
.flow { display: grid; gap: 16px; max-width: 820px; }
.flow-step {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: 0 6px 24px rgba(30,42,90,.06);
  padding: 22px 24px; display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start;
}
.flow-step .nr {
  width: 44px; height: 44px; border-radius: 50%; background: var(--orange); color: #fff;
  font-weight: 900; font-size: 1.15rem; display: flex; align-items: center; justify-content: center;
}
.flow-step h3 { color: var(--navy); font-size: 1.1rem; font-weight: 800; margin-bottom: 4px; }
.flow-step p { color: var(--gray); font-size: 0.96rem; }
.flow-arrow { text-align: center; color: var(--violet); font-size: 1.4rem; font-weight: 900; line-height: 1; }

@media (max-width: 640px) {
  .hero h1 { font-size: 1.9rem; }
  .listing { grid-template-columns: 1fr; }
  .listing .side { align-items: flex-start; text-align: left; }
  section.block { padding: 48px 0; }
}
