/* ==========================================================================
   SCHOTT KI-Report — Werbe-/Landingpage (statisch)
   Design: v4-Design-Tokens der App (Goldton-CI) + Anmutung der Firmenbroschüre.
   DSGVO: Schriften self-hosted (woff2), keine externen CDNs zur Laufzeit.
   Alle Pfade relativ (domain-neutral).
   ========================================================================== */

/* ---- Selbst gehostete Schriften (SIL OFL, Lizenzen in ./assets/fonts/) ---- */
@font-face { font-family: "Source Sans 3"; font-style: normal; font-weight: 400; font-display: swap;
  src: url(../fonts/source-sans-3-latin-400-normal.woff2) format("woff2"); }
@font-face { font-family: "Source Sans 3"; font-style: normal; font-weight: 600; font-display: swap;
  src: url(../fonts/source-sans-3-latin-600-normal.woff2) format("woff2"); }
@font-face { font-family: "Source Sans 3"; font-style: normal; font-weight: 700; font-display: swap;
  src: url(../fonts/source-sans-3-latin-700-normal.woff2) format("woff2"); }
/* Fallback für die Titel-Wortmarke (CI-Schrift Univers 67 Condensed Bold ist
   kommerziell und liegt nicht als Webfont vor): Roboto Condensed Bold, SIL OFL. */
@font-face { font-family: "Roboto Condensed"; font-style: normal; font-weight: 700; font-display: swap;
  src: url(../fonts/roboto-condensed-latin-700-normal.woff2) format("woff2"); }

/* ---- Design-Tokens (aus static/css/brand.css übernommen) ---- */
:root {
  --gold-050: #f7f2e8; --gold-100: #efe6d4; --gold-200: #e2d4b9; --gold-300: #cdb893;
  --gold-400: #b89c6f; --gold-500: #a6895a; --gold-600: #8f7745; --gold-700: #7d6736;
  --gold-primary: #a6895a; --gold-dark: #8B7150;

  --ink-900: #1a1c1e; --ink-800: #2b2e31; --ink-700: #44484c;
  --neutral-100: #eef0f2; --neutral-200: #dde0e3; --neutral-300: #c2c7cb;
  --neutral-500: #767b80; --neutral-600: #5c6166;

  --text-heading: #1a1c1e; --text-body: #44484c; --text-muted: #767b80;
  --bg-body: #f5f3f0; --bg-white: #ffffff; --surface-sunken: #f6f7f8; --surface-dark: #1a1c1e;
  --border-hairline: #dde0e3;

  /* 7 verbindliche Branchen-CI-Farben (unverändert) */
  --branche-bau: #F48F24; --branche-ftw: #0EA84C; --branche-ks: #A4A9AB;
  --branche-ni: #EAD92C; --branche-tb: #ED3430; --branche-ama: #0EB7BA; --branche-tga: #1C9CD3;

  --maxw: 1180px;
  --radius: 14px;
  --shadow-card: 0 18px 48px -24px rgba(26,28,30,.35);
  --shadow-soft: 0 8px 24px -16px rgba(26,28,30,.35);
}

/* ---- Reset / Grundlagen ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text-body);
  background: var(--bg-body);
  line-height: 1.6;
  font-size: 18px;
  overflow-x: clip; /* Sicherheitsnetz gegen horizontales Wackeln auf Mobilgeräten */
}
/* Grid-/Flex-Kinder dürfen unter ihre min-content-Breite schrumpfen —
   verhindert den Mobil-Blowout durch lange Wörter/Bilder (390px-Diagnose) */
.hero .wrap > *, .feature > *, .steps > *, .chart-cards > *, .privacy .grid > *, .site-footer .top > * { min-width: 0; }
/* Überschriften in derselben Sans wie Text/Buttons/App (PO-Feedback 2026-07-07:
   Serif wirkte gegenüber App/Broschüre/Website unruhig) */
h1, h2, h3, h4 { font-family: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text-heading); line-height: 1.15; margin: 0 0 .5em; font-weight: 700;
  letter-spacing: -.015em; overflow-wrap: break-word; hyphens: auto; }
p { margin: 0 0 1em; }
a { color: var(--gold-700); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
:focus-visible { outline: 2px solid var(--gold-primary); outline-offset: 2px; border-radius: 4px; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow { font-family: "Source Sans 3", sans-serif; text-transform: uppercase; letter-spacing: .16em;
  font-size: .78rem; font-weight: 700; color: var(--gold-700); margin: 0 0 .9rem; }
.gold { color: var(--gold-700); }

/* ---- Branchen-Farbstreifen (Broschüren-Motiv) ---- */
.branchband { display: flex; height: 6px; width: 100%; }
.branchband span { flex: 1 1 0; }
.branchband .b1 { background: var(--branche-bau); } .branchband .b2 { background: var(--branche-ftw); }
.branchband .b3 { background: var(--branche-ks); }  .branchband .b4 { background: var(--branche-ni); }
.branchband .b5 { background: var(--branche-tb); }  .branchband .b6 { background: var(--branche-ama); }
.branchband .b7 { background: var(--branche-tga); }

/* ---- Buttons ---- */
.btn { display: inline-flex; align-items: center; gap: .55rem; font-family: "Source Sans 3", sans-serif;
  font-weight: 700; font-size: 1rem; padding: .85rem 1.5rem; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease; }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-gold { background: var(--gold-primary); color: #fff; box-shadow: var(--shadow-soft); }
.btn-gold:hover { background: var(--gold-600); color: #fff; }
.btn-ghost { background: transparent; color: var(--gold-700); border-color: var(--gold-300); }
.btn-ghost:hover { background: var(--gold-050); }
.btn-lg { padding: 1.05rem 2rem; font-size: 1.08rem; }

/* ---- Badge „Verfügbar ab Herbst 2026" ---- */
.badge { display: inline-flex; align-items: center; gap: .5rem; background: var(--gold-050);
  color: var(--gold-700); border: 1px solid var(--gold-200); border-radius: 999px;
  padding: .4rem .95rem; font-size: .9rem; font-weight: 700; }
.badge .dot { width: .55rem; height: .55rem; border-radius: 50%; background: var(--gold-primary); }

/* ---- Kopfzeile ---- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92);
  backdrop-filter: saturate(1.1) blur(8px); border-bottom: 1px solid var(--border-hairline); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .85rem; min-width: 0; }
.brand img { height: 38px; width: auto; }
.brand .divider { width: 1px; height: 30px; background: var(--neutral-200); }
.brand .product { font-family: "Source Sans 3", sans-serif; font-weight: 700; color: var(--text-heading);
  font-size: 1.05rem; white-space: nowrap; }
/* Untertitel exakt auf Titelbreite gesperrt (fontTools-Messung: Titel
   „SCHOTT KI-Report" 700 vs. „BERICHTSASSISTENT" 600 @ 2/3-em → 0,1901em
   je Lücke, N−1-Konvention; negatives margin-right kompensiert das
   Trailing-Spacing des Browsers nach dem letzten Zeichen). Untertitel in em,
   damit die Sperrung bei allen Header-Größen mitskaliert. */
.brand .product small { display: block; font-family: "Source Sans 3", sans-serif; font-weight: 600;
  font-size: .6667em; letter-spacing: .1901em; margin-right: -.1901em;
  text-transform: uppercase; color: var(--gold-700); }
.header-cta { display: flex; align-items: center; gap: 1rem; }
.header-cta .nav-link { font-weight: 600; color: var(--text-body); font-size: .98rem; }

/* ---- Hero ---- */
.hero { position: relative; overflow: hidden; background:
    radial-gradient(1200px 520px at 82% -8%, var(--gold-050), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--bg-body) 100%); }
.hero .wrap { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center;
  padding-top: 68px; padding-bottom: 72px; }
/* Maximalgröße so gewählt, dass „SCHOTT KI-Report" (Sans) in der Hero-Spalte
   nicht mitten im Wort umbricht; die Wortmarke selbst bricht dank nowrap nicht
   am Bindestrich von „KI-Report". */
.hero h1 { font-size: clamp(2.2rem, 3.6vw, 3.05rem); letter-spacing: -.01em; }
.hero h1 .gold { white-space: nowrap; }
.hero .lede { font-size: 1.2rem; color: var(--text-body); max-width: 34ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.6rem; align-items: center; }
.hero-badges { margin-top: 1.7rem; display: flex; gap: .8rem; flex-wrap: wrap; }
.hero-visual { position: relative; }

/* „Browser"-Rahmen für Screenshots */
.frame { background: #fff; border: 1px solid var(--neutral-200); border-radius: var(--radius);
  box-shadow: var(--shadow-card); overflow: hidden; }
.frame .frame-bar { display: flex; align-items: center; gap: .4rem; padding: .6rem .85rem;
  background: var(--surface-sunken); border-bottom: 1px solid var(--border-hairline); }
.frame .frame-bar i { width: .7rem; height: .7rem; border-radius: 50%; background: var(--neutral-300); display: block; }
.frame .frame-bar .url { margin-left: .6rem; font-size: .72rem; color: var(--text-muted);
  font-family: "Source Sans 3", sans-serif; letter-spacing: .02em; }
.frame img { width: 100%; display: block; }
.hero-visual .float-note { position: absolute; left: -18px; bottom: -18px; background: #fff;
  border: 1px solid var(--neutral-200); border-radius: 12px; box-shadow: var(--shadow-soft);
  padding: .7rem 1rem; font-size: .84rem; font-weight: 600; color: var(--text-heading); display: flex; gap: .5rem; align-items: center; }
.hero-visual .float-note .g { color: var(--branche-ftw); font-size: 1.2rem; line-height: 1; }

/* ---- Abschnitts-Grundlayout ---- */
section { padding: 80px 0; }
.section-head { max-width: 44rem; margin: 0 auto 52px; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.section-head p { font-size: 1.12rem; color: var(--text-muted); }

/* ---- Anker unter der sticky Kopfzeile freihalten ---- */
section[id], .privacy-gruppe[id] { scroll-margin-top: 92px; }

/* ---- Schräges Verfügbarkeits-Band (Ankündigungsseite) ----
   Desktop: wie ein Geschenkband flach diagonal über die linke obere Ecke des
   Seiteninhalts gespannt (in der Hero-Sektion verankert, deren
   overflow:hidden die Bandenden sauber beschneidet; Kopfzeile bleibt frei
   und klickbar). Unter 1024px als schlichter Balken über dem Inhalt —
   ein Eckband würde dort zu viel verdecken. */
/* Bandlänge so bemessen, dass das rechte Ende VOLLSTÄNDIG oberhalb der
   Sektionsoberkante liegt (untere rechte Rechteck-Ecke unsichtbar) und das
   linke Ende aus der linken Kante läuft; der Schriftzug sitzt per
   text-indent im rechten Teil des sichtbaren Bandstücks. */
.ribbon { position: absolute; top: 0; left: 0; width: 740px; height: 470px;
  overflow: hidden; pointer-events: none; z-index: 20; }
.ribbon span { position: absolute; top: 82px; left: -240px; display: block; width: 1040px;
  transform: rotate(-24deg); background: linear-gradient(120deg, var(--gold-600), var(--gold-primary));
  color: #fff; text-align: center; text-indent: 130px; font-weight: 700; font-size: 1.28rem;
  letter-spacing: .05em; padding: 1.15rem 0; box-shadow: 0 8px 26px -8px rgba(26,28,30,.5);
  border-top: 2px solid rgba(255,255,255,.4); border-bottom: 2px solid rgba(255,255,255,.4); }
@media (max-width: 1023.98px) {
  .ribbon { position: absolute; top: 0; left: 0; right: 0; width: auto; height: auto; }
  .ribbon span { position: static; display: block; transform: none; width: auto;
    text-indent: 0; padding: .55rem 1rem; font-size: .92rem; border: 0; box-shadow: none; }
}

/* ---- Minimal-Teaser (nur Wortmarke + Aufbau-Hinweis) ---- */
.hero-mini .wrap { display: block; text-align: center;
  padding-top: 170px; padding-bottom: 150px; }
.hero-mini .wortmarke { font-size: clamp(3rem, 5.6vw, 4.4rem); }
.hero-mini .subline { font-size: 1.5rem; margin: -.2rem 0 0; }
.hero-mini .bald-box { margin-top: 3.2rem; text-align: left; }
@media (max-width: 1023.98px) {
  .hero-mini .wrap { padding-top: 96px; padding-bottom: 72px; }
  .hero-mini .wortmarke { font-size: clamp(2.3rem, 9vw, 3rem); }
  .hero-mini .subline { font-size: 1.2rem; }
  .hero-mini .bald-box { margin-top: 2.2rem; text-align: center; }
}

/* ---- Ankündigungs-Hero (Solo-Sektion) ---- */
/* Oberer Innenabstand hält den Text unter dem Eckband (linke Spalte);
   Bildspalte bewusst breiter als die Textspalte und oben ausgerichtet,
   damit ohne unnötigen Leerraum über dem Screenshot. */
.hero-solo .wrap { padding-top: 112px; padding-bottom: 28px;
  grid-template-columns: .95fr 1.15fr; align-items: start; }
.hero-solo .hero-visual { margin-top: 8px; }
.hero-solo .lede { max-width: none; }

/* Wortmarke wie in der Berichts-Werbeanzeige (dort Univers 67 Condensed
   Bold — kommerziell, daher hier bewusst IMMER der optisch nächstliegende
   freie Condensed-Schnitt Roboto Condensed Bold, self-hosted; PO-Vorgabe
   2026-07-16: einheitlich die freie Schrift für alle Betrachter). */
.wortmarke { font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-weight: 700; font-stretch: condensed; letter-spacing: .01em; white-space: nowrap;
  font-size: clamp(2.6rem, 4.4vw, 3.6rem); }
.wortmarke .sc { font-size: .78em; letter-spacing: .02em; }
.wortmarke .wm-gold { color: var(--gold-primary); }
.wortmarke .wm-ink { color: var(--text-heading); }
.subline { font-size: 1.35rem; font-weight: 600; color: var(--text-heading);
  margin: -.4rem 0 1.3rem; }

/* Anzeige-Punkte (Individuelle Berichte / Export / Anonymität) */
.punkte { list-style: none; padding: 0; margin: 1.2rem 0 0; }
.punkte li { position: relative; padding-left: 1.7rem; margin-bottom: .8rem; color: var(--text-body); }
.punkte li::before { content: ""; position: absolute; left: 0; top: .5em; width: .7rem; height: .7rem;
  border-radius: 50%; background: var(--gold-primary); }
.punkte strong { color: var(--text-heading); }

/* PDF-Bericht als überlappende Beilage zum Chat-Screenshot (ganze A4-Seite) */
.hero-visual { position: relative; }
.hero-visual .pdf-frame { position: absolute; width: 42%; left: -30px; bottom: -56px; }

/* Hinweis auf kommende Inhalte */
.bald { padding: 0 0 48px; }
.bald-box { display: flex; align-items: center; gap: 1.1rem; max-width: 620px; margin: 0 auto;
  background: var(--gold-050); border: 1px solid var(--gold-200); border-radius: var(--radius);
  padding: 20px 26px; box-shadow: var(--shadow-soft); }
.bald-box p { margin: 0; color: var(--text-body); font-size: 1.02rem; }
.bald-box strong { color: var(--text-heading); }
.bald-icon { flex: 0 0 auto; display: grid; place-items: center; width: 46px; height: 46px;
  border-radius: 50%; background: var(--gold-primary); color: #fff; }
.bald-icon svg { width: 24px; height: 24px; }

@media (max-width: 1023.98px) {
  .hero-solo .wrap { padding-top: 48px; padding-bottom: 56px; grid-template-columns: 1fr; }
  .subline { font-size: 1.15rem; }
  .wortmarke { font-size: clamp(2.1rem, 8vw, 2.8rem); }
  .hero-visual .pdf-frame { position: static; width: 72%; margin: 18px auto 0; }
  .bald-box { flex-direction: column; text-align: center; }
}

/* ---- Zweispaltige Fußzeile (Ankündigungsseite) ---- */
.site-footer .top.top-zwei { grid-template-columns: 1.4fr 1fr; }
@media (max-width: 1023.98px) {
  .site-footer .top.top-zwei { grid-template-columns: 1fr; }
}

/* ---- Beispielfrage als Chat-Sprechblase ---- */
.frage-bubble { margin: 1.2rem 0; padding: 1.1rem 1.35rem; background: var(--gold-050);
  border: 1px solid var(--gold-200); border-radius: 16px 16px 16px 4px; box-shadow: var(--shadow-soft); }
.frage-bubble p { margin: 0; font-size: 1.08rem; font-weight: 600; color: var(--text-heading); }

/* ---- Unterabschnitte innerhalb der Funktion-Sektion ---- */
.subsection { padding: 46px 0; }

/* ---- Schritt-für-Schritt-Karten ---- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; list-style: none;
  padding: 0; margin: 0; counter-reset: none; }
.step { background: #fff; border: 1px solid var(--border-hairline); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-soft); }
.step .step-nr { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold-primary); color: #fff; font-weight: 700; font-size: 1.15rem; margin-bottom: .9rem; }
.step h3 { font-size: 1.12rem; margin-bottom: .3rem; }
.step p { color: var(--text-muted); font-size: .98rem; margin: 0; }
.steps-fazit, .chart-cards-fazit { max-width: 44rem; margin: 28px auto 0; text-align: center;
  color: var(--text-muted); font-size: 1.05rem; }

/* ---- Grafikarten-Karten ---- */
.chart-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.chart-card { background: #fff; border: 1px solid var(--border-hairline); border-radius: var(--radius);
  padding: 18px 18px 20px; box-shadow: var(--shadow-soft); }
.chart-card img { border: 1px solid var(--neutral-200); border-radius: 10px; margin-bottom: .9rem; }
.chart-card h3 { font-size: 1.15rem; margin-bottom: .25rem; }
.chart-card p { color: var(--text-muted); font-size: .98rem; margin: 0; }

/* ---- Feature-Reihen (abwechselnd) ---- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  padding: 46px 0; }
.feature:nth-child(even) .feature-media { order: 2; }
.feature h3 { font-size: clamp(1.5rem, 2.3vw, 2rem); }
.feature .tag { display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold-700); margin-bottom: .5rem; }
.feature ul { list-style: none; padding: 0; margin: 1rem 0 0; }
.feature li { position: relative; padding-left: 1.7rem; margin-bottom: .55rem; color: var(--text-body); }
.feature li::before { content: ""; position: absolute; left: 0; top: .55em; width: .7rem; height: .7rem;
  border-radius: 50%; background: var(--gold-primary); }
.feature-media .frame img { background: #fff; }
/* Schmale Hochformat-Screenshots (Seitenleiste) nicht auf Spaltenbreite aufblasen */
.feature-media.schmal { max-width: 400px; margin: 0 auto; width: 100%; }
.feature-media.plain img { border-radius: var(--radius); border: 1px solid var(--neutral-200);
  box-shadow: var(--shadow-card); background: #fff; }

/* ---- Datenschutz-Band (dunkel) ---- */
.privacy { background: var(--surface-dark); color: #d7dade; }
.privacy h2 { color: #fff; }
.privacy .eyebrow { color: var(--gold-300); }
.privacy .lead { color: #b9bdc2; font-size: 1.12rem; max-width: 46rem; }
.privacy .privacy-gruppe { color: var(--gold-300); font-size: .95rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; margin: 44px 0 0; }
.privacy .grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 22px; }
.privacy .card { background: #23262a; border: 1px solid #313539; border-radius: var(--radius); padding: 26px; }
.privacy .card h3 { color: #fff; font-size: 1.2rem; margin-bottom: .35rem; }
.privacy .card p { color: #aeb2b7; margin: 0; font-size: 1rem; }
.privacy .card .ic { width: 42px; height: 42px; border-radius: 11px; background: rgba(166,137,90,.16);
  color: var(--gold-300); display: grid; place-items: center; margin-bottom: 1rem; }
.privacy .card .ic svg { width: 22px; height: 22px; }

/* ---- Branchen-Sektion ---- */
.branchen { background: #fff; }
.chips { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 8px; }
.chip { display: inline-flex; align-items: center; gap: .6rem; background: var(--surface-sunken);
  border: 1px solid var(--border-hairline); border-radius: 999px; padding: .6rem 1.1rem;
  font-weight: 600; color: var(--text-heading); }
.chip .sw { width: 1rem; height: 1rem; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(0,0,0,.08); }

/* ---- CTA-Band ---- */
.cta { background: linear-gradient(120deg, var(--gold-600), var(--gold-primary)); color: #fff; text-align: center; }
.cta h2 { color: #fff; font-size: clamp(1.9rem, 3vw, 2.6rem); }
.cta p { color: #fbf6ec; font-size: 1.15rem; max-width: 40rem; margin-left: auto; margin-right: auto; }
.cta .btn-gold { background: #fff; color: var(--gold-700); }
.cta .btn-gold:hover { background: var(--gold-050); color: var(--gold-700); }
.cta .mail { display: inline-block; margin-top: 1rem; color: #fff; font-weight: 600; }

/* ---- Fußzeile ---- */
.site-footer { background: var(--ink-900); color: #9aa0a5; padding: 56px 0 34px; font-size: .95rem; }
.site-footer .top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
.site-footer h4 { color: #fff; font-family: "Source Sans 3", sans-serif; font-size: .8rem;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer a { color: #c2c7cb; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .5rem; }
.site-footer .brandline { font-family: "Source Sans 3", sans-serif; color: #fff; font-size: 1.15rem; font-weight: 700; }
.site-footer .platzhalter { color: #6b7075; font-style: italic; }
.site-footer .legal { margin-top: 34px; padding-top: 22px; border-top: 1px solid #2b2e31;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: #767b80; font-size: .85rem; }

/* ==========================================================================
   Responsive — Dock-/Layout-Breakpoint 1024px (konsistent mit der App)
   ========================================================================== */
@media (max-width: 1023.98px) {
  body { font-size: 17px; }
  .hero .wrap { grid-template-columns: 1fr; gap: 40px; padding-top: 48px; padding-bottom: 56px; }
  .hero .lede { max-width: none; }
  .hero-visual { order: -1; }
  .feature { grid-template-columns: 1fr; gap: 28px; }
  .feature:nth-child(even) .feature-media { order: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .chart-cards { grid-template-columns: 1fr; }
  .privacy .grid { grid-template-columns: 1fr; }
  .site-footer .top { grid-template-columns: 1fr; gap: 26px; }
  .header-cta .nav-link { display: none; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  section { padding: 48px 0; }
  .wrap { padding: 0 18px; }

  /* Kompakter Header: Logo + Produktname bleiben, Button schrumpft */
  .site-header .wrap { height: 62px; gap: .6rem; }
  .brand { gap: .55rem; }
  .brand img { height: 28px; }
  .brand .divider { height: 24px; }
  .brand .product { font-size: .88rem; } /* Untertitel skaliert em-basiert mit */
  .header-cta .btn { padding: .55rem .95rem; font-size: .85rem; white-space: nowrap; }

  /* Hero: kleinere Headline (kein min-content-Blowout), gestapelte Buttons */
  .hero .wrap { padding-top: 36px; padding-bottom: 44px; gap: 30px; }
  .hero h1 { font-size: clamp(1.75rem, 7.4vw, 2.3rem); }
  .hero .lede { font-size: 1.06rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; justify-content: center; }
  .hero-badges .badge { font-size: .8rem; padding: .35rem .8rem; }

  /* Schwebende Notiz nicht mehr über den Rand ragen lassen */
  .hero-visual .float-note { position: static; margin-top: .8rem; justify-content: center; }
  .frame .frame-bar .url { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

  .section-head { margin-bottom: 34px; }
  .section-head p { font-size: 1rem; }
  .feature { padding: 28px 0; }
  .subsection { padding: 28px 0; }
  .steps { grid-template-columns: 1fr; }
  .privacy .card { padding: 20px; }
  .chips { gap: 9px; }
  .chip { font-size: .88rem; padding: .5rem .85rem; }
  .site-footer .legal { flex-direction: column; }
}
