/* === Selbst gehostete Schriften (lokal, kein Google-CDN, DSGVO-freundlich) === */
@font-face{font-family:'DM Sans';font-style:normal;font-weight:400;font-display:swap;src:url('/fonts/dm-sans-latin-400-normal.woff2') format('woff2'),url('/fonts/dm-sans-latin-400-normal.woff') format('woff');}
@font-face{font-family:'DM Sans';font-style:normal;font-weight:500;font-display:swap;src:url('/fonts/dm-sans-latin-500-normal.woff2') format('woff2'),url('/fonts/dm-sans-latin-500-normal.woff') format('woff');}
@font-face{font-family:'DM Sans';font-style:normal;font-weight:600;font-display:swap;src:url('/fonts/dm-sans-latin-600-normal.woff2') format('woff2'),url('/fonts/dm-sans-latin-600-normal.woff') format('woff');}
@font-face{font-family:'DM Sans';font-style:normal;font-weight:700;font-display:swap;src:url('/fonts/dm-sans-latin-700-normal.woff2') format('woff2'),url('/fonts/dm-sans-latin-700-normal.woff') format('woff');}
@font-face{font-family:'IBM Plex Mono';font-style:normal;font-weight:400;font-display:swap;src:url('/fonts/ibm-plex-mono-latin-400-normal.woff2') format('woff2'),url('/fonts/ibm-plex-mono-latin-400-normal.woff') format('woff');}
@font-face{font-family:'IBM Plex Mono';font-style:normal;font-weight:500;font-display:swap;src:url('/fonts/ibm-plex-mono-latin-500-normal.woff2') format('woff2'),url('/fonts/ibm-plex-mono-latin-500-normal.woff') format('woff');}

/* ============================================================
   ki-marketing-academy.de — Stylesheet
   DM Sans + Cobalt Blue Palette
   
   Struktur:
   1. Variables (Farben, Schriften, Spacing)
   2. Reset & Base
   3. Layout (Container, Sections)
   4. Typography
   5. Navigation
   6. Components (Hero, Cluster-Cards, Direkt-Antwort, Prompt-Box, etc.)
   7. Modules (Newsletter-Block, CTA-Module)
   8. Footer
   9. Responsive
   ============================================================ */

/* =============================================
   1. VARIABLES
   ============================================= */
:root {
  /* Colors - Cobalt Blue Palette */
  --paper: #F8F8F5;
  --paper-deep: #EDEDE7;
  --ink: #131520;
  --ink-soft: #4A4D5A;
  --ink-mute: #898B92;
  --rule: #D8D8D2;
  --accent: #1E3A8A;
  --accent-soft: #E5EAF5;
  --accent-light: #6B8FE0;
  --highlight: #DDE4F0;
  
  /* Typography */
  --sans: 'DM Sans', system-ui, -apple-system, sans-serif;
  --mono: 'IBM Plex Mono', monospace;
  
  /* Spacing - 4px-Grid */
  --s1: 0.25rem;
  --s2: 0.5rem;
  --s3: 0.75rem;
  --s4: 1rem;
  --s6: 1.5rem;
  --s8: 2rem;
  --s12: 3rem;
  --s16: 4rem;
  --s20: 5rem;
  --s24: 6rem;
  
  /* Layout */
  --content-max: 740px;     /* Lesbare Textbreite */
  --page-max: 1200px;       /* Maximale Seitenbreite */
  
  /* Transitions */
  --transition: 0.2s ease;
}

/* =============================================
   2. RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* =============================================
   3. LAYOUT
   ============================================= */
.page-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.container {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--s8);
}

.container-narrow {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--s8);
}

/* =============================================
   4. TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4 {
  color: var(--ink);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

p {
  margin-bottom: var(--s4);
}

a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  transition: background var(--transition);
}

a:hover {
  background: var(--highlight);
}

strong {
  font-weight: 600;
  color: var(--ink);
}

/* Section-Label - kleines orange/blaues Eyebrow vor Headlines */
.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: var(--s4);
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-weight: 600;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

/* Breadcrumb */
.breadcrumb {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
  margin-bottom: var(--s6);
  font-weight: 500;
}

.breadcrumb a {
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}

.breadcrumb a:hover {
  background: none;
  border-color: var(--accent);
}

.breadcrumb-sep {
  color: var(--ink-mute);
  margin: 0 var(--s2);
}

/* Meta-Row (Lesedauer, Datum, Autor) */
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s6);
  align-items: center;
  padding-top: var(--s4);
  border-top: 1px solid var(--rule);
  margin-top: var(--s6);
}

.meta-item {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.meta-item strong {
  color: var(--ink-soft);
  font-weight: 600;
}

/* =============================================
   5. NAVIGATION
   ============================================= */
.nav {
  border-bottom: 1px solid var(--rule);
  background: rgba(248, 248, 245, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: var(--s4) var(--s8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s8);
}

.nav-logo {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
  border-bottom: none;
}

.nav-logo:hover {
  background: none;
}

.nav-logo .accent {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: var(--s6);
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  border-bottom: none;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--accent);
  background: none;
}

.nav-cta {
  background: var(--ink);
  color: var(--paper);
  padding: var(--s2) var(--s4);
  font-size: 14px;
  font-weight: 500;
  transition: background var(--transition);
}

.nav-cta:hover {
  background: var(--accent);
  color: var(--paper);
}

/* =============================================
   6. COMPONENTS
   ============================================= */

/* HERO - für Hub und Frageseiten */
.page-hero {
  padding: var(--s16) var(--s8) var(--s8);
  border-bottom: 1px solid var(--rule);
}

.page-hero-inner {
  max-width: var(--page-max);
  margin: 0 auto;
}

.page-h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 900px;
  margin: var(--s4) 0 var(--s6);
}

.page-h1 .accent {
  color: var(--accent);
}

.page-deck {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 700px;
}

/* DIREKT-ANTWORT - die für Featured-Snippets optimierte Box */
.direkt-antwort {
  margin: var(--s8) auto;
  max-width: var(--content-max);
  padding: var(--s6) var(--s8);
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
}

.direkt-antwort-label {
  font-size: 11px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--s3);
  font-weight: 600;
}

.direkt-antwort-text {
  font-size: 21px;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 400;
}

/* INHALTSVERZEICHNIS */
.toc {
  background: var(--paper-deep);
  border: 1px solid var(--rule);
  padding: var(--s6);
  margin: var(--s8) auto;
  max-width: var(--content-max);
}

.toc-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  margin-bottom: var(--s3);
  font-weight: 600;
}

.toc ol {
  counter-reset: toc-counter;
}

.toc li {
  counter-increment: toc-counter;
  padding: var(--s2) 0;
  border-bottom: 1px solid var(--rule);
  font-size: 15px;
}

.toc li:last-child {
  border-bottom: none;
}

.toc li::before {
  content: counter(toc-counter, decimal-leading-zero);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-mute);
  margin-right: var(--s3);
  font-weight: 500;
}

.toc a {
  color: var(--ink-soft);
  border-bottom: none;
}

.toc a:hover {
  color: var(--accent);
  background: none;
}

/* ARTIKEL-BODY - Haupt-Lesefläche der Frageseiten */
.article-body {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--s12) var(--s8);
}

.article-body h2 {
  font-size: 30px;
  margin-top: var(--s12);
  margin-bottom: var(--s4);
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body h3 {
  font-size: 22px;
  margin-top: var(--s8);
  margin-bottom: var(--s3);
  font-weight: 600;
}

.article-body p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: var(--s4);
  color: var(--ink-soft);
}

.article-body ul,
.article-body ol {
  margin: var(--s4) 0 var(--s4) var(--s6);
  color: var(--ink-soft);
  list-style: revert;
}

.article-body li {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: var(--s2);
}

/* PROMPT-BOX - für Code-Beispiele und Prompts */
.prompt-box {
  background: var(--ink);
  color: var(--paper);
  padding: var(--s6);
  margin: var(--s6) 0;
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.6;
  border-left: 3px solid var(--accent);
  position: relative;
  white-space: pre-wrap;
  word-break: break-word;
}

.prompt-box::before {
  content: 'PROMPT';
  position: absolute;
  top: var(--s2);
  right: var(--s4);
  font-size: 10px;
  color: var(--ink-mute);
  letter-spacing: 0.1em;
  font-family: var(--sans);
  font-weight: 600;
}

/* INFO-BLOCK - für wichtige Hinweise im Fließtext */
.info-block {
  background: var(--highlight);
  border-left: 3px solid var(--ink);
  padding: var(--s4) var(--s6);
  margin: var(--s6) 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
}

.info-block strong {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
  margin-bottom: var(--s2);
  font-weight: 600;
}

/* VERGLEICHS-TABELLE - für Tool-Vergleiche */
.compare-table {
  margin: var(--s8) 0;
  border: 1px solid var(--rule);
  background: var(--paper);
}

.compare-row {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  border-bottom: 1px solid var(--rule);
}

.compare-row:last-child {
  border-bottom: none;
}

.compare-row.is-header {
  background: var(--paper-deep);
  font-weight: 600;
}

.compare-row.is-header .compare-cell {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  font-weight: 600;
}

.compare-cell {
  padding: var(--s4) var(--s6);
  border-right: 1px solid var(--rule);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.compare-cell:last-child {
  border-right: none;
}

.compare-cell.is-label {
  background: var(--paper-deep);
  font-weight: 600;
  color: var(--ink);
  font-size: 14px;
}

/* TOOL-CARD - für Listen-Frageseiten (Beste KI-Tools) */
.tool-list {
  margin: var(--s8) 0;
  display: grid;
  gap: var(--s8);
}

.tool-card {
  border: 1px solid var(--rule);
  background: var(--paper);
  padding: var(--s8);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--s6);
}

.tool-rank {
  font-family: var(--mono);
  font-size: 32px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.tool-content h3 {
  font-size: 24px;
  margin-bottom: var(--s2);
}

.tool-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s4);
  margin-bottom: var(--s4);
  padding-bottom: var(--s4);
  border-bottom: 1px solid var(--rule);
}

.tool-tag {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
  font-weight: 500;
}

.tool-tag strong {
  color: var(--ink-soft);
}

.tool-content p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
}

.tool-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
  margin-top: var(--s4);
}

.tool-pros-cons h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  margin-bottom: var(--s2);
  font-weight: 600;
}

.tool-pros-cons ul {
  list-style: none !important;
  margin: 0 !important;
}

.tool-pros-cons li {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: var(--s1);
  padding-left: var(--s4);
  position: relative;
}

.tool-pros-cons .pros li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

.tool-pros-cons .cons li::before {
  content: '−';
  position: absolute;
  left: 0;
  color: var(--ink-mute);
  font-weight: 600;
}

/* HUB - Cluster-Karten und Sidebar */
.hub-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--s12);
  align-items: start;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: var(--s12) var(--s8);
}

.hub-section {
  border-top: 1px solid var(--rule);
  padding-top: var(--s8);
  margin-bottom: var(--s12);
}

.hub-section h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: var(--s4);
}

.hub-section p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: var(--s4);
}

/* FAQ-Liste auf Hub-Seiten */
.faq-list {
  margin-top: var(--s8);
}

.faq-item {
  border-top: 1px solid var(--rule);
  padding: var(--s8) 0;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--rule);
}

.faq-item h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: var(--s4);
}

.faq-item h3 a {
  color: var(--ink);
  border-bottom: none;
}

.faq-item h3 a:hover {
  color: var(--accent);
  background: none;
}

.faq-answer {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: var(--s4);
}

.faq-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  transition: background var(--transition);
}

.faq-link:hover {
  background: var(--highlight);
}

/* SIDEBAR auf Hub-Seiten */
.hub-sidebar {
  position: sticky;
  top: 80px;
}

.sidebar-block {
  border: 1px solid var(--rule);
  padding: var(--s6);
  background: var(--paper-deep);
  margin-bottom: var(--s4);
}

.sidebar-block h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  margin-bottom: var(--s4);
  font-weight: 600;
}

.sidebar-block ul {
  list-style: none;
}

.sidebar-block li {
  padding: var(--s2) 0;
  border-bottom: 1px solid var(--rule);
}

.sidebar-block li:last-child {
  border-bottom: none;
}

.sidebar-block a {
  font-size: 14px;
  color: var(--ink-soft);
  border-bottom: none;
  line-height: 1.4;
  display: block;
}

.sidebar-block a:hover {
  color: var(--accent);
  background: none;
}

/* CLUSTER GRID - 3-Spalten-Karten fuer Homepage (Trust, Themen, Drei Wege) */
.cluster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  border: 1px solid var(--rule);
  margin: var(--s8) 0;
  background: var(--paper);
}

.cluster-card {
  padding: var(--s8);
  border-right: 1px solid var(--rule);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-bottom: none;
  color: inherit;
  transition: background var(--transition);
}

.cluster-card:last-child {
  border-right: none;
}

a.cluster-card:hover {
  background: var(--paper-deep);
}

.cluster-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: var(--s4);
  font-weight: 600;
  text-transform: uppercase;
}

.cluster-title {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: var(--s4);
  letter-spacing: -0.02em;
}

.cluster-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: var(--s4);
  flex-grow: 1;
}

.cluster-arrow {
  font-size: 13px;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  transition: gap var(--transition), color var(--transition);
  font-weight: 600;
}

a.cluster-card:hover .cluster-arrow {
  gap: var(--s4);
  color: var(--accent);
}

/* RELATED ARTICLES (am Ende von Frageseiten) */
.related-articles {
  max-width: var(--content-max);
  margin: var(--s12) auto;
  padding: var(--s8) 0;
  border-top: 1px solid var(--rule);
}

.related-articles h3 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  margin-bottom: var(--s4);
  font-weight: 600;
}

.related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
}

.related-card {
  border: 1px solid var(--rule);
  padding: var(--s6);
  background: var(--paper);
  text-decoration: none;
  border-bottom: none;
  transition: background var(--transition), border-color var(--transition);
}

.related-card:hover {
  background: var(--paper-deep);
  border-color: var(--accent);
}

.related-card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
  margin-bottom: var(--s2);
  font-weight: 600;
}

.related-card-title {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.related-card:hover .related-card-title {
  color: var(--accent);
}

/* =============================================
   7. MODULES (Newsletter, CTA)
   ============================================= */

/* CTA-Module - inline auf Seiten */
.cta-module {
  margin: var(--s12) auto;
  max-width: var(--content-max);
  border: 1px solid var(--rule);
  background: var(--paper-deep);
  padding: var(--s8);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s8);
  align-items: center;
}

.cta-content h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--s2);
  color: var(--ink);
  letter-spacing: -0.01em;
}

.cta-content p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
}

.cta-button {
  font-size: 15px;
  font-weight: 600;
  color: var(--paper);
  background: var(--ink);
  padding: var(--s3) var(--s6);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  transition: background var(--transition);
  white-space: nowrap;
  border-bottom: none;
}

.cta-button:hover {
  background: var(--accent);
  color: var(--paper);
}

.cta-button-arrow {
  transition: transform var(--transition);
}

.cta-button:hover .cta-button-arrow {
  transform: translateX(4px);
}

/* NEWSLETTER-MODULE - dunkler Block */
.newsletter-module {
  background: var(--ink);
  color: var(--paper);
  padding: var(--s16) var(--s8);
}

.newsletter-inner {
  max-width: var(--page-max);
  margin: 0 auto;
}

.newsletter-eyebrow {
  font-size: 11px;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--s4);
  font-weight: 600;
}

.newsletter-headline {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--s4);
  max-width: 700px;
  color: var(--paper);
}

.newsletter-headline .accent {
  color: var(--accent-light);
}

.newsletter-bullets {
  list-style: none;
  margin: var(--s6) 0;
  max-width: 600px;
}

.newsletter-bullets li {
  font-size: 16px;
  color: var(--paper-deep);
  line-height: 1.55;
  padding: var(--s2) 0 var(--s2) var(--s6);
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.newsletter-bullets li:last-child {
  border-bottom: none;
}

.newsletter-bullets li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-light);
  font-family: var(--mono);
}

.newsletter-form {
  display: flex;
  gap: var(--s2);
  max-width: 480px;
  margin-top: var(--s6);
  flex-wrap: wrap;
}

.newsletter-input {
  flex: 1;
  min-width: 240px;
  padding: var(--s4);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
}

.newsletter-input::placeholder {
  color: rgba(248,248,245,0.4);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--accent-light);
}

.newsletter-submit {
  padding: var(--s4) var(--s6);
  background: var(--accent);
  color: var(--paper);
  border: none;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}

.newsletter-submit:hover {
  background: var(--paper);
  color: var(--ink);
}

.newsletter-fineprint {
  margin-top: var(--s4);
  font-size: 12px;
  color: rgba(248,248,245,0.5);
  letter-spacing: 0.02em;
}

/* =============================================
   8. FOOTER
   ============================================= */
.footer {
  background: var(--paper-deep);
  border-top: 1px solid var(--rule);
  padding: var(--s12) var(--s8) var(--s8);
}

.footer-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s8);
}

.footer-col h5 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  margin-bottom: var(--s4);
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: var(--s2);
}

.footer-col a {
  font-size: 14px;
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: none;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--accent);
  background: none;
}

.footer-brand {
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--s3);
  letter-spacing: -0.01em;
}

.footer-brand .accent {
  color: var(--accent);
}

.footer-tagline {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 320px;
}

.footer-bottom {
  max-width: var(--page-max);
  margin: var(--s12) auto 0;
  padding-top: var(--s4);
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ink-mute);
  flex-wrap: wrap;
  gap: var(--s4);
}

.footer-bottom a {
  color: var(--ink-mute);
  border-bottom: none;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--accent);
  background: none;
}

/* =============================================
   9. RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .hub-grid {
    grid-template-columns: 1fr;
    gap: var(--s8);
  }
  
  .hub-sidebar {
    position: static;
  }
  
  .compare-row {
    grid-template-columns: 1fr;
  }
  
  .compare-cell {
    border-right: none;
    border-bottom: 1px solid var(--rule);
  }
  
  .compare-cell:last-child {
    border-bottom: none;
  }
  
  .compare-cell.is-label {
    border-bottom: 1px solid var(--rule);
  }
}

@media (max-width: 768px) {
  .container,
  .container-narrow {
    padding: 0 var(--s4);
  }
  
  .nav-inner {
    padding: var(--s4);
  }
  
  .nav-links {
    display: none;
    /* Mobile-Menü kann später ergänzt werden */
  }
  
  .page-hero {
    padding: var(--s8) var(--s4);
  }
  
  .article-body {
    padding: var(--s8) var(--s4);
  }
  
  .direkt-antwort {
    margin: var(--s6) var(--s4);
    padding: var(--s4) var(--s6);
  }
  
  .direkt-antwort-text {
    font-size: 18px;
  }
  
  .toc {
    margin: var(--s6) var(--s4);
    padding: var(--s4);
  }
  
  .cta-module {
    grid-template-columns: 1fr;
    margin: var(--s8) var(--s4);
    padding: var(--s6);
  }
  
  .newsletter-module {
    padding: var(--s12) var(--s4);
  }
  
  .related-grid {
    grid-template-columns: 1fr;
  }
  
  .cluster-grid {
    grid-template-columns: 1fr;
  }
  
  .cluster-card {
    border-right: none;
    border-bottom: 1px solid var(--rule);
  }
  
  .cluster-card:last-child {
    border-bottom: none;
  }
  
  .tool-card {
    grid-template-columns: 1fr;
    gap: var(--s4);
    padding: var(--s6);
  }
  
  .tool-rank {
    font-size: 24px;
  }
  
  .tool-pros-cons {
    grid-template-columns: 1fr;
  }
  
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--s6);
  }
  
  .footer {
    padding: var(--s8) var(--s4);
  }
  
  .hub-grid {
    padding: var(--s8) var(--s4);
  }
}

@media (max-width: 480px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}
