/* ============================================================
   Smart Marketers — Design System v2
   Vorgabe „Struktur Website_14.07.26“:
   Premium-Beratung mit moderner AI-Kompetenz.
   Typografie: Space Grotesk (Headlines) · Montserrat (Lauftext)
   Farben: #222222 Text · Weiß Hauptflächen · #F8F7EE Highlights
           #FCBB58 Primärakzent (CTA) · #D8B4E2 Sekundär (AI/Smart Zone)
           Schwarz/Anthrazit für Premium-Kontrastflächen
   ============================================================ */

/* Lokale Schriften (variable Fonts, latin): garantiert sofort verfügbar,
   kein Nachladen von Google, kein Font-Tausch, kein Ruckeln */
@font-face {
  font-family: "Space Grotesk";
  src: url("assets/fonts/space-grotesk.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/montserrat.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: block;
}

:root {
  --ink: #222222;          /* Text, Headlines, Navigation, dunkle Flächen */
  --ink-soft: #3c3c3c;
  --ink-muted: #6d6d6d;
  --paper: #ffffff;        /* Hauptbackground */
  --white: #ffffff;
  --highlight: #edefe9;    /* Highlight-Flächen, Infoboxen, Systembereiche */
  --line: #e9e7de;
  --dark: #1b1b1b;         /* Footer, Premium-Kontrastflächen */

  --bronze: #fcbb58;       /* Primärer Akzent: Buttons, CTAs, Flächen-Hervorhebungen */
  --bronze-dark: #8d5da0;  /* Textakzent: Lila (abgedunkeltes #D8B4E2 für Kontrast auf Weiß) */
  --bronze-soft: #f8f7ee;  /* Infobox-Hintergrund */
  --green-soft: #ffffff;   /* Ergebnis-Chips (auf Highlight-Flächen) */

  --lilac: #d8b4e2;        /* Sekundärakzent: AI-Bezug, Smart Zone */
  --lilac-dark: #8d5da0;   /* Lila als Textfarbe (Kontrast) */
  --lilac-soft: #f6eef9;

  --font-display: "Space Grotesk", "Segoe UI", Arial, sans-serif;
  --font-body: "Montserrat", -apple-system, "Segoe UI", Roboto, sans-serif;

  --maxw: 1140px;
  --radius: 8px;
  --shadow: 0 14px 40px rgba(34, 34, 34, 0.10);
}

/* Nahtlose Seitenwechsel: Der Browser hält das alte Bild fest, bis die neue
   Seite fertig gerendert ist – kein Flackern der Menüleiste beim Klick.
   (Progressive Enhancement: Browser ohne Unterstützung ignorieren es.) */
@view-transition { navigation: auto; }

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  /* Platz für den Scrollbalken immer reservieren: verhindert, dass die
     zentrierte Menüleiste beim Wechsel zwischen langen und kurzen Seiten
     horizontal springt („Klackern" beim Klick) */
  scrollbar-gutter: stable;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-soft);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  /* Sticky Footer: bei kurzen Seiten (z. B. Impressum) wird der Footer
     an den unteren Bildschirmrand gedrückt */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2.1rem, 4.6vw, 3.3rem); font-weight: 700; }
h2 { font-size: clamp(1.55rem, 3vw, 2.2rem); }
h3 { font-size: 1.22rem; line-height: 1.35; }

a { color: var(--bronze-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
strong { color: var(--ink); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
/* Einheitliche Ränder: .narrow-Abschnitte nutzen denselben Container wie alle
   anderen (linksbündig am gleichen Rand); nur die Textzeilen sind begrenzt –
   exakt wie bei .section-head („Die Ursache", „Die Lösung" usw.). */
.narrow { max-width: var(--maxw); }
.narrow h1, .narrow h2, .narrow h3,
.narrow p, .narrow ul, .narrow ol, .narrow blockquote { max-width: 720px; }

/* ---------- Header: transparente, schwebende Pill-Navigation mit Lila-Rahmen ---------- */
.site-header {
  position: sticky; top: 14px; z-index: 50;
  background: transparent;
  padding: 0 16px;
}
.nav-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 10px 12px 10px 26px;
  height: 64px; /* feste Höhe: verhindert vertikales Ruckeln beim Seitenwechsel */
  max-width: var(--maxw); margin: 0 auto;
  /* Kein backdrop-filter: Der GPU-Compositing-Effekt verschob die
     Buttonfarbe ins Orange – ohne Blur bleibt das Gelb exakt identisch */
  background: rgba(27, 27, 27, 0.82);
  border: 1.5px solid var(--lilac);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(34, 34, 34, 0.12);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand img { height: 38px; width: 38px; object-fit: contain; filter: invert(1); border-radius: 50%; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.12rem; font-weight: 700; color: var(--white);
  letter-spacing: 0.01em; line-height: 1.1;
}
.brand-name small {
  display: block; font-family: var(--font-body);
  font-size: 0.62rem; font-weight: 500; color: #b9b9b9;
  letter-spacing: 0.14em; text-transform: uppercase; margin-top: 2px;
}

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav > a {
  color: #ececec; font-size: 0.93rem; font-weight: 500; position: relative;
}
.main-nav > a:hover { color: var(--white); text-decoration: none; }
/* Aktiver Punkt nur über Farbe markiert – gleiches Gewicht, damit beim
   Klicken nichts ruckelt (kein Breitensprung durch Fettung) */
.main-nav > a[aria-current="page"] { color: var(--lilac); font-weight: 500; }
.nav-badge {
  position: absolute; top: -12px; right: -10px;
  font-family: var(--font-body); font-size: 0.62rem; font-weight: 600;
  color: var(--lilac); letter-spacing: 0.02em;
}

.btn {
  display: inline-block; padding: 13px 28px; border-radius: 999px;
  font-weight: 600; font-size: 0.96rem; line-height: 1.3;
  text-align: center; transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--bronze); color: var(--ink); }
.btn-primary:hover { background: #f4ad3d; }
.btn-outline { border: 1.5px solid var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); }
/* Exakt dasselbe Gelb wie alle anderen Buttons der Website */
.btn-nav { padding: 11px 24px; font-size: 0.88rem; border-radius: 999px; background: var(--bronze); color: var(--ink); }
.btn-nav:hover { background: #f4ad3d; }

.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; color: var(--white); cursor: pointer; }

/* ---------- Hero ---------- */
.hero { padding: 72px 0 84px; background: var(--white); border-bottom: 1px solid var(--line); }

/* Startseiten-Hero: Foto über die volle Websitebreite, hinter der Menüleiste.
   Heller Verlauf von links sichert die Lesbarkeit von Text und Buttons. */
.hero-photo {
  position: relative;
  margin-top: -76px;            /* zieht das Bild hinter die sticky Pill-Nav */
  padding: 190px 0 110px;
  background: url("assets/victoria-thaller-smart-marketers.jpg") no-repeat 100% 15% / cover;
}
.hero-photo::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg,
    rgba(14, 14, 14, 0.88) 0%,
    rgba(14, 14, 14, 0.76) 45%,
    rgba(14, 14, 14, 0.45) 75%,
    rgba(14, 14, 14, 0.3) 100%);
}
.hero-photo .wrap { position: relative; }
.hero-photo .hero-inner { max-width: 660px; }
/* Helle Typografie und Buttons auf dem dunklen Headerbild */
.hero-photo h1 { color: var(--white); }
.hero-photo .lead { color: #e4e4e4; }
.hero-photo .lead strong { color: var(--white); }
.hero-photo .eyebrow { color: var(--lilac); }
.hero-photo .cta-note { color: #c9c9c9; }
.hero-photo .proof-line { color: #c9c9c9; border-top-color: rgba(255, 255, 255, 0.25); }
.hero-photo .btn-outline { border-color: var(--white); color: var(--white); }
.hero-photo .btn-outline:hover { background: var(--white); color: var(--ink); }
@media (max-width: 700px) {
  .hero-photo { padding: 210px 0 70px; background-position: 78% 12%; }
  .hero.hero-photo { padding: 210px 0 70px; }
  .hero-photo::before { background: rgba(14, 14, 14, 0.68); }
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 56px; align-items: center;
}
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--bronze-dark); margin-bottom: 18px;
}
.hero p.lead { font-size: 1.14rem; margin: 24px 0 32px; max-width: 58ch; }
.cta-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.cta-note { font-size: 0.85rem; color: var(--ink-muted); margin-top: 14px; }
.proof-line {
  margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line);
  font-size: 0.88rem; color: var(--ink-muted); display: flex; gap: 10px 28px; flex-wrap: wrap;
}
.proof-line span::before { content: "— "; color: var(--bronze); }
.hero-image img {
  border-radius: var(--radius);
  box-shadow: 0 0 28px rgba(34, 34, 34, 0.07);
  aspect-ratio: 4/5; object-fit: cover;
}

/* ---------- Sections ---------- */
section { padding: 84px 0; }
section.alt { background: var(--highlight); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
section.dark { background: var(--dark); }
section.dark h2, section.dark h3 { color: var(--white); }
section.dark p, section.dark li { color: #c9c9c9; }
section.dark .eyebrow { color: var(--bronze); }

.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head p { margin-top: 16px; font-size: 1.08rem; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* Zitierfähiger Definitionsblock (GEO) — Infobox auf Highlight-Fläche,
   linksbündig und in derselben Breite wie die Textblöcke */
.definition {
  border-left: 3px solid var(--bronze);
  background: var(--highlight);
  max-width: 760px;
  padding: 22px 28px; border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.05rem; color: var(--ink-soft); margin: 32px 0;
}
.definition strong { color: var(--ink); }

/* Cards */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px;
}
.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.95rem; }
.card .more { display: inline-block; margin-top: 14px; font-weight: 600; font-size: 0.9rem; }
.card-num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--bronze);
  line-height: 1; margin-bottom: 14px; display: block;
}
a.card-link { display: block; color: inherit; transition: border-color .15s ease, box-shadow .15s ease; }
a.card-link:hover { text-decoration: none; border-color: var(--bronze); box-shadow: 0 6px 20px rgba(34,34,34,0.06); }

/* Phasen-Chips auf Karten */
.phase {
  display: inline-block; font-family: var(--font-display);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 30px; margin-bottom: 14px;
}
.phase-1 { background: var(--highlight); color: var(--bronze-dark); border: 1px solid var(--bronze); }
.phase-2 { background: var(--bronze); color: var(--ink); }
.phase-3 { background: var(--lilac); color: var(--ink); }

/* Stufen (System) */
.stufe {
  display: grid; grid-template-columns: 120px 1fr; gap: 32px;
  padding: 44px 0; border-top: 1px solid var(--line);
}
.stufe:last-of-type { border-bottom: 1px solid var(--line); }
.stufe-num {
  font-family: var(--font-display); font-size: 3.4rem; font-weight: 700;
  color: var(--bronze); line-height: 1;
}
.stufe-num small { display: block; font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-muted); margin-top: 8px; font-weight: 600; }
.stufe h3 { font-size: 1.5rem; margin-bottom: 12px; }
.stufe ul { margin: 14px 0 18px 20px; }
.stufe li { margin-bottom: 6px; }
.ergebnis {
  display: inline-block; background: var(--white); border: 1px solid var(--bronze);
  border-radius: var(--radius);
  padding: 10px 18px; font-size: 0.93rem; color: var(--ink);
}
.ergebnis strong { color: var(--ink); }

/* Vergleich (zwei Spalten Kontrast) */
.contrast { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contrast .card.neg { background: var(--highlight); }
.contrast .card.neg h3 { color: var(--ink-muted); }
.contrast ul { list-style: none; margin-top: 14px; }
.contrast li { padding-left: 26px; position: relative; margin-bottom: 10px; font-size: 0.95rem; }
.contrast .neg li::before { content: "✕"; position: absolute; left: 0; color: #b0533f; font-weight: 700; }
.contrast .pos li::before { content: "✓"; position: absolute; left: 0; color: var(--bronze-dark); font-weight: 700; }

/* Checkliste generisch */
ul.check { list-style: none; }
ul.check li { padding-left: 28px; position: relative; margin-bottom: 12px; }
ul.check li::before { content: "✓"; position: absolute; left: 0; color: var(--bronze-dark); font-weight: 700; }
ul.cross { list-style: none; }
ul.cross li { padding-left: 28px; position: relative; margin-bottom: 12px; }
ul.cross li::before { content: "✕"; position: absolute; left: 0; color: #b0533f; font-weight: 700; }

/* Über mich Split */
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.split img {
  border-radius: var(--radius);
}
.facts { list-style: none; margin-top: 20px; }
.facts li { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
.facts li strong { display: inline-block; min-width: 30px; color: var(--bronze-dark); }

blockquote {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; line-height: 1.5;
  color: var(--ink); border-left: 3px solid var(--bronze);
  padding-left: 24px; margin: 28px 0;
}
blockquote cite { display: block; font-family: var(--font-body); font-size: 0.86rem; font-style: normal; color: var(--ink-muted); margin-top: 12px; }

/* FAQ */
.faq-list { max-width: 780px; }
details {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  margin-bottom: 12px; padding: 0;
}
summary {
  cursor: pointer; list-style: none; padding: 18px 24px;
  font-weight: 600; color: var(--ink); font-size: 1rem;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-size: 1.4rem; color: var(--bronze-dark); flex-shrink: 0; }
details[open] summary::after { content: "–"; }
details .answer { padding: 0 24px 20px; font-size: 0.96rem; }

/* Newsletter / Smart-Zone-Band (dunkle Premium-Fläche) */
.newsletter-band { background: var(--dark); padding: 64px 0; }
.newsletter-band h2 { color: var(--white); font-size: 1.7rem; }
.newsletter-band p { color: #c9c9c9; margin: 12px 0 24px; max-width: 60ch; }
.newsletter-form { display: flex; gap: 12px; flex-wrap: wrap; max-width: 520px; }
.newsletter-form input {
  flex: 1; min-width: 220px; padding: 12px 16px; border-radius: var(--radius);
  border: 1px solid #3a3a3a; background: #2a2a2a; color: var(--white); font-size: 0.95rem;
  font-family: var(--font-body);
}
.newsletter-form input::placeholder { color: #8d8d8d; }
.newsletter-form .btn { background: var(--bronze); color: var(--ink); border: none; cursor: pointer; }
.newsletter-form .btn:hover { background: #f4ad3d; }
.newsletter-note { font-size: 0.78rem !important; color: #8d8d8d !important; margin-top: 14px !important; }

/* Datenschutz-Zustimmung unter Formularen */
.newsletter-form .consent, .form-card .consent {
  flex-basis: 100%; display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.8rem; font-weight: 400; color: #8d8d8d; line-height: 1.5;
  cursor: pointer; margin-top: 4px;
}
.newsletter-form .consent input[type="checkbox"], .form-card .consent input[type="checkbox"] {
  flex: none; width: 16px; height: 16px; min-width: 16px; margin-top: 2px;
  accent-color: var(--bronze); cursor: pointer;
}
.newsletter-form .consent span, .form-card .consent span { flex: 1; }
.newsletter-form .consent a, .form-card .consent a { color: inherit; text-decoration: underline; }
.form-card .consent { margin-top: 18px; color: var(--ink-muted); }

/* CTA final */
.cta-final { text-align: center; padding: 96px 0; }
.cta-final h2 { max-width: 640px; margin: 0 auto 18px; }
.cta-final p { max-width: 560px; margin: 0 auto 30px; font-size: 1.08rem; }

/* Breadcrumb */
.breadcrumb { font-size: 0.83rem; color: var(--ink-muted); padding: 20px 0 0; }
.breadcrumb a { color: var(--ink-muted); }
.breadcrumb span { color: var(--ink); }

/* Baustein-Einordnung */
.baustein-tag {
  display: inline-block; background: var(--highlight); color: var(--bronze-dark);
  border: 1px solid var(--bronze);
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 30px; margin-bottom: 20px;
}
.baustein-tag.tag-lilac { background: var(--lilac-soft); color: var(--lilac-dark); border-color: var(--lilac); }

/* Smart-Zone-Elemente (Sekundärakzent Lila) */
.zone-card { border-top: 3px solid var(--lilac); }
.zone-eyebrow { color: var(--lilac-dark); }

/* ---------- Quick-Check (Ampelsystem) ---------- */
.qc-frage { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 28px; margin-bottom: 16px; }
.qc-frage .qc-baustein { font-family: var(--font-display); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--lilac-dark); }
.qc-frage p.qc-text { font-weight: 600; color: var(--ink); margin: 8px 0 14px; }
.qc-optionen { display: flex; gap: 10px; flex-wrap: wrap; }
.qc-optionen label {
  border: 1.5px solid var(--line); border-radius: 999px; padding: 8px 18px;
  font-size: 0.88rem; cursor: pointer; user-select: none; transition: all 0.12s ease;
}
.qc-optionen input { position: absolute; opacity: 0; pointer-events: none; }
.qc-optionen label:has(input:checked) { border-color: var(--ink); background: var(--ink); color: var(--white); }
.qc-ergebnis { display: none; }
.qc-ergebnis.sichtbar { display: block; }
.ampel-zeile {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 24px; margin-bottom: 12px;
}
.ampel-punkt { width: 18px; height: 18px; border-radius: 50%; flex: none; margin-top: 5px; }
.ampel-gruen { background: #5d9e52; }
.ampel-gelb { background: var(--bronze); }
.ampel-rot { background: #c0533f; }
.ampel-zeile h3 { font-size: 1.02rem; margin-bottom: 2px; }
.ampel-zeile p { font-size: 0.92rem; }
.qc-fazit { border-left: 3px solid var(--lilac); background: var(--highlight); border-radius: 0 var(--radius) var(--radius) 0; padding: 22px 28px; margin: 28px 0; max-width: none; }

/* ---------- Prompt-Templates (Copy & Paste) ---------- */
.prompt-block { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 24px; overflow: hidden; }
.prompt-kopf { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 16px 24px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.prompt-kopf h3 { font-size: 1.05rem; }
.btn-copy {
  border: 1.5px solid var(--ink); background: none; color: var(--ink);
  border-radius: 999px; padding: 7px 18px; font-family: var(--font-body);
  font-size: 0.82rem; font-weight: 600; cursor: pointer; flex: none;
}
.btn-copy:hover { background: var(--ink); color: var(--white); }
.btn-copy.kopiert { background: #5d9e52; border-color: #5d9e52; color: var(--white); }
.prompt-block pre {
  padding: 20px 24px; margin: 0; white-space: pre-wrap; word-break: break-word;
  font-family: "Consolas", "Menlo", monospace; font-size: 0.85rem; line-height: 1.6;
  background: var(--highlight); color: var(--ink-soft); max-height: 340px; overflow-y: auto;
}

/* Blog teaser */
.post-card { display: flex; flex-direction: column; }
.post-card .cluster {
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--bronze-dark); margin-bottom: 10px;
}
.post-card p { flex: 1; }

/* Ablauf Schritte */
.steps { counter-reset: step; list-style: none; max-width: 720px; }
.steps li {
  counter-increment: step; position: relative;
  padding: 0 0 32px 64px; border-left: 1px solid var(--line); margin-left: 20px;
}
.steps li:last-child { border-left-color: transparent; padding-bottom: 0; }
.steps li::before {
  content: counter(step); position: absolute; left: -21px; top: 0;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--bronze); border: none; color: var(--ink);
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
}
.steps h3 { margin-bottom: 6px; }

/* Tabelle */
.table-scroll { overflow-x: auto; margin: 28px 0; }
table.cmp { border-collapse: collapse; width: 100%; background: var(--white); border: 1px solid var(--line); font-size: 0.92rem; }
table.cmp th, table.cmp td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
table.cmp th { background: var(--highlight); font-weight: 600; color: var(--ink); font-family: var(--font-display); }

/* Footer (dunkle Premium-Fläche) */
.site-footer { background: var(--dark); color: #b5b5b5; padding: 64px 0 32px; font-size: 0.9rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.site-footer h4 { color: var(--white); font-family: var(--font-display); font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: #b5b5b5; }
.site-footer a:hover { color: var(--white); }
.footer-brand img { height: 46px; margin-bottom: 16px; filter: invert(1); opacity: 0.9; }
.footer-brand p { max-width: 34ch; }
.footer-bottom { border-top: 1px solid #333333; padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; color: #8d8d8d; }

/* Kontakt/Formular */
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; }
.form-card label { display: block; font-weight: 600; color: var(--ink); font-size: 0.9rem; margin: 18px 0 6px; }
.form-card input, .form-card textarea, .form-card select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.95rem; background: var(--highlight); color: var(--ink);
}
.form-card textarea { min-height: 130px; resize: vertical; }
.form-card .btn { margin-top: 24px; border: none; cursor: pointer; width: 100%; }
.form-note { font-size: 0.8rem; color: var(--ink-muted); margin-top: 12px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid, .split { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { max-width: 420px; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .main-nav {
    display: none; position: absolute; top: calc(100% + 10px); left: 16px; right: 16px;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: rgba(27, 27, 27, 0.95); border: 1.5px solid var(--lilac);
    border-radius: 24px; padding: 14px 26px 20px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  }
  .main-nav.open { display: flex; }
  .main-nav > a { padding: 10px 0; width: 100%; }
  .nav-badge { position: static; margin-left: 8px; }
  .nav-toggle { display: block; }
}
@media (max-width: 600px) {
  section { padding: 60px 0; }
  .hero { padding: 48px 0 60px; }
  .grid-2, .grid-3, .grid-4, .contrast { grid-template-columns: 1fr; }
  .stufe { grid-template-columns: 1fr; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn-nav { display: none; }
}
