/* mousePDF — gemeinsames Stylesheet für Werkzeug-Landingpages.
   Ergänzt _page.css (Header, Footer, Grundtypografie) um die Bausteine,
   die eine Werkzeug-Seite zusätzlich braucht: Hero-CTA-Reihe, Schritte,
   Anzeigenflächen, FAQ-Akkordeon, Quervernetzung zu anderen Werkzeugen.
   Sprachunabhängig — beim Anlegen neuer Sprachversionen unverändert
   mitkopieren, nur die HTML-Inhalte übersetzen. */

.hero-eyebrow-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.hero-cta { display: flex; gap: 12px; margin: 28px 0 22px; flex-wrap: wrap; }
.assurance { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 8px; }
.assurance span { display: flex; align-items: center; gap: 7px; font-size: 13.5px; color: var(--text-muted); }
.assurance svg { width: 15px; height: 15px; color: var(--accent); flex: none; }

.sec-head { max-width: 620px; margin: 48px 0 28px; }
.sec-head h2 { margin-top: 0; }
.sec-head p { color: var(--text-muted); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 8px; }
.step {
  background: var(--bg-elev); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
}
.step-num {
  font-family: var(--mono); font-size: 13px; font-weight: 600; color: var(--accent);
  border: 1px solid var(--accent-line); border-radius: 7px;
  width: 32px; height: 32px; display: grid; place-items: center; margin-bottom: 14px;
}
.step h3 { font-size: 16px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.step p { color: var(--text-muted); font-size: 14.5px; margin-bottom: 0; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }

.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.feature {
  background: var(--bg-elev); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 20px;
  transition: border-color .18s ease, transform .18s ease;
}
.feature:hover { border-color: var(--border-str); transform: translateY(-2px); }
.feature h3 { font-size: 15px; font-weight: 600; margin-bottom: 4px; color: var(--text); }
.feature h3 a { color: inherit; }
.feature p { color: var(--text-muted); font-size: 13.5px; margin-bottom: 0; }
@media (max-width: 860px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }

/* Anzeigen ruhen bis zur naechsten AdSense-Wiedervorlage (03.09.2026).
   Die Plaetze bleiben im Quelltext, werden aber weder geladen noch
   angezeigt. Wiedereinschalten = das display:none hier entfernen. */
.ad-slot { display: none; margin: 40px 0; }
.ad-inner {
  border: 1px dashed var(--border); border-radius: 12px;
  min-height: 100px; display: block;
  background: rgba(255,255,255,0.015);
}
.ad-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: 6px;
}

.faq { max-width: 760px; }
.faq details {
  border: 1px solid var(--border); border-radius: 11px;
  background: var(--bg-elev); margin-bottom: 12px; overflow: hidden;
}
.faq details[open] { border-color: var(--border-str); }
.faq summary {
  cursor: pointer; padding: 16px 20px; font-weight: 600; font-size: 15.5px; color: var(--text);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { color: var(--accent); font-size: 20px; font-weight: 400; transition: transform .2s; flex: none; }
.faq details[open] summary .plus { transform: rotate(45deg); }
.faq details p { padding: 0 20px 18px; color: var(--text-muted); font-size: 14.5px; margin-bottom: 0; }

.crumb { font-size: 13px; color: var(--text-dim); margin-bottom: 18px; }
.crumb a { color: var(--text-muted); }
.crumb a:hover { color: var(--text); }

/* Werkzeug-Screenshot (19.08.2026). Je Werkzeugseite und Sprache eine eigene
   Aufnahme der echten Oberflaeche; die Datei steht im Markup, den Sprachtausch
   macht bauen.mjs. Feste width/height im <img>, damit beim Nachladen nichts
   springt. Liegt hier statt inline, weil sonst dieselbe Regel in 943 Seiten
   stuende. */
figure.shot{margin:26px 0 34px}
figure.shot img{width:100%;height:auto;display:block;border-radius:12px;
  border:1px solid rgba(120,130,160,.28)}
