/* =========================================================================
   Outreach Trust-Landingpage - Layout 4 "Nutzenversprechen" (v1)
   Bewusst am wenigsten "Firmen-Landingpage"-artig: reduziert, editorial,
   viel Weißraum. Im Mittelpunkt steht der konkrete Nutzen/das Ergebnis
   eines Gesprächs - NICHT die Kontaktperson und NICHT harte Drucksprache.
   Eigenständige Optik: nicht Leads-Pirates-Branding (Navy/Gold), nicht
   1:1 Kunden-Branding, auch farblich unterscheidbar von den anderen
   Outreach-Layouts (Blau/Teal/Terracotta).
   Farben werden zur Laufzeit teilweise aus assets/config.js gesetzt (main.js).
   ========================================================================= */

:root {
  --accent: #6b5b95;
  --accent-dark: #2c2438;
  --accent-soft: #efeaf5;
  --bg: #ffffff;
  --bg-soft: #f7f5fa;
  --text: #2a2530;
  --text-muted: #6b6572;
  --border: #e7e2ee;
  --radius: 10px;
  --shadow-sm: 0 2px 14px rgba(44, 36, 56, 0.06);
  --max-width: 1080px;
  --max-narrow: 700px;

  --font-headline: Palatino, "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.wrap.narrow {
  max-width: var(--max-narrow);
}

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

a {
  color: inherit;
}

h1, h2, h3 {
  font-family: var(--font-headline);
  color: var(--accent-dark);
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

p {
  margin: 0 0 16px;
}

.muted {
  color: var(--text-muted);
}

.small {
  font-size: 13px;
}

.text-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
}

.text-link:hover {
  text-decoration: underline;
}

/* --------------------------------- Buttons -------------------------------- */

.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15.5px;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-small {
  padding: 9px 18px;
  font-size: 14px;
}

/* --------------------------------- Header --------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: auto;
}

.brand-logo-img {
  height: 28px;
  width: auto;
}

.brand-logo-text {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 19px;
  color: var(--accent-dark);
}

.main-nav {
  display: flex;
  gap: 28px;
}

.main-nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 14.5px;
  font-weight: 500;
}

.main-nav a:hover {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--accent-dark);
  border-radius: 2px;
}

/* --------------------------------- Hero ----------------------------------- */

.hero {
  background: var(--bg-soft);
  padding: 96px 0 84px;
}

.hero-inner {
  max-width: 700px;
}

.kicker {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-bottom: 22px;
}

.hero h1 {
  font-size: 38px;
  margin-bottom: 22px;
}

.hero .lead {
  color: var(--text-muted);
  font-size: 17.5px;
  max-width: 600px;
  margin-bottom: 34px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* --------------------------------- Sections -------------------------------- */

.section {
  padding: 84px 0;
}

.eyebrow {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-headline {
  font-size: 26px;
  margin-bottom: 16px;
}

.section-lead {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 0 32px;
  font-size: 16px;
}

/* --------------------------------- Takeaway-Liste --------------------------- */

.takeaway-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: takeaway;
}

.takeaway-list li {
  counter-increment: takeaway;
  position: relative;
  padding: 0 0 30px 46px;
}

.takeaway-list li:last-child {
  padding-bottom: 0;
}

.takeaway-list li::before {
  content: counter(takeaway, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 2px;
  font-family: var(--font-headline);
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
}

.takeaway-list h3 {
  font-size: 17.5px;
  margin-bottom: 6px;
}

.takeaway-list p {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0;
}

/* --------------------------------- Zitate / Belege --------------------------- */

.section-quotes {
  background: var(--bg-soft);
}

.quote-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.quote-block {
  margin: 0;
  padding: 4px 0 4px 22px;
  border-left: 3px solid var(--accent);
}

.quote-text {
  font-family: var(--font-headline);
  font-style: italic;
  font-size: 18px;
  color: var(--accent-dark);
  margin: 0 0 8px;
}

.quote-attribution {
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-size: 13.5px;
  color: var(--text-muted);
}

.quote-company {
  font-weight: 700;
  color: var(--text);
}

/* --------------------------------- Ablauf des Gesprächs --------------------- */

.call-steps {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  counter-reset: callstep;
}

.call-steps li {
  counter-increment: callstep;
  position: relative;
  padding: 0 0 26px 46px;
}

.call-steps li:last-child {
  padding-bottom: 0;
}

.call-steps li::before {
  content: "Schritt " counter(callstep);
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}

.call-steps h3 {
  font-size: 16.5px;
  margin: 18px 0 6px;
}

.call-steps p {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0;
}

.call-steps-note {
  font-size: 14px;
  font-style: italic;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 18px;
  margin: 0;
}

/* --------------------------------- Kontakt (klein, kein Foto) --------------- */

.section-contact {
  padding: 56px 0;
}

.contact-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.contact-bar-who strong {
  font-family: var(--font-headline);
  font-size: 16px;
  color: var(--accent-dark);
  margin-right: 8px;
}

.contact-bar-who span {
  font-size: 14px;
}

.transparency-note {
  margin: 14px 0 0;
  font-size: 13.5px;
  color: var(--text-muted);
}

/* --------------------------------- Final CTA ---------------------------------- */

.section-cta {
  background: var(--accent-dark);
  color: #fff;
  text-align: left;
}

.section-cta h2 {
  color: #fff;
  font-size: 26px;
  margin-bottom: 12px;
}

.section-cta p {
  color: #d9d3e2;
}

.final-cta-inner {
  max-width: var(--max-narrow);
}

.final-cta-inner .hero-ctas {
  margin: 24px 0 14px;
}

.reply-hint {
  color: #b8aec8;
  font-size: 14px;
}

/* --------------------------------- Fallstudien als Link-Liste ---------------- */

.section-caselinks {
  padding: 56px 0 72px;
}

.caselinks-headline {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin: 0 0 12px;
}

.caselinks-list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.caselinks-list li {
  font-size: 14.5px;
  color: var(--text-muted);
}

/* --------------------------------- Footer -------------------------------------- */

.site-footer {
  background: var(--bg-soft);
  color: var(--text-muted);
  padding: 36px 0;
  border-top: 1px solid var(--border);
}

.footer-inner p {
  margin: 0 0 14px;
  font-size: 13.5px;
}

.footer-links {
  display: flex;
  gap: 20px;
  margin-bottom: 14px;
}

.footer-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 13.5px;
}

.footer-links a:hover {
  color: var(--accent);
}

/* --------------------------------- Legal pages (Impressum/Datenschutz) --------- */

.legal-page {
  max-width: 700px;
}

.legal-page h1 {
  font-size: 25px;
  margin-bottom: 20px;
}

.legal-page h2 {
  font-family: var(--font-body);
  font-size: 16.5px;
  font-weight: 700;
  margin-top: 28px;
  color: var(--accent-dark);
}

.legal-page address {
  font-style: normal;
  line-height: 1.7;
}

.legal-wrap {
  padding: 56px 0 80px;
}

/* --------------------------------- Responsive ----------------------------------- */

@media (max-width: 860px) {
  .hero h1 {
    font-size: 30px;
  }
}

@media (max-width: 680px) {
  .main-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    display: none;
    padding: 8px 24px 16px;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }

  #nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 60px 0 52px;
  }

  .section {
    padding: 56px 0;
  }

  .contact-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}
