/*
 * bonwise Landing — main.css
 * Portiert 1:1 aus mocks/10b-landing.html (Tim-Abnahme 2026-07-18).
 * Unterschiede zum Mock (bewusst, siehe docs/landing-learnings.md §3/§4/§6/§10):
 *  - Fonts self-hosted statt Google-CDN (@font-face unten, DSGVO-Gate CLAUDE.md §4).
 *  - Icons als inline-SVG (icons-Sprite im HTML) statt Material-Symbols-Font (Icon-CDN verboten).
 *  - Kein Phone-Frame: der Mock zeigt eine 402px-„Karte" auf grauem Grund; die echte Seite
 *    ist die helle Fläche (--bg) über den ganzen Viewport, Inhalt in zentrierter Spalte.
 *  - A11y-Basisblock (Skip-Link, :focus-visible, prefers-reduced-motion, scroll-padding-top,
 *    Tap-Targets >=44px) von Anfang an.
 *  - Keine Inline-Styles (CSP-freundlich), Einmal-Werte des Mocks als Klassen.
 */

/* ------------------------------------------------------------------ *
 * Fonts (self-hosted, latin-Subset, Variable — übernommen aus einkaufs-app,
 * P4.5 S3: Google-CDN raus wegen LCP-Kette + DSGVO/IP-Übermittlung, LG München I).
 * Metrik-angepasste Arial-Fallbacks halten den font-display: swap sprungfrei.
 * ------------------------------------------------------------------ */
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('/fonts/quicksand-latin.woff2') format('woff2');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329,
    U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Public Sans';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/public-sans-latin.woff2') format('woff2');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329,
    U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Quicksand Fallback';
  src: local('Arial');
  size-adjust: 103.48%;
  ascent-override: 96.64%;
  descent-override: 24.16%;
  line-gap-override: 0%;
}
@font-face {
  font-family: 'Public Sans Fallback';
  src: local('Arial');
  size-adjust: 102.94%;
  ascent-override: 92.29%;
  descent-override: 21.86%;
  line-gap-override: 0%;
}

/* ------------------------------------------------------------------ *
 * Tokens (aus 10b eingefroren — kein Import aus dem App-Repo, CLAUDE.md §5)
 * ------------------------------------------------------------------ */
:root {
  --bg: #f7f8f2;
  --surface: #ffffff;
  --surface-2: #f0f3ea;
  --border: #e2e6da;
  --ink: #18221a;
  --ink-2: #4a554d;
  --ink-3: #6e7a70;
  --primary: #147a45;
  --primary-2: #6fbf2e;
  --on-primary: #ffffff;
  --accent: #f2a20c;
  --good: #178a4e;
  --good-soft: #e3f3e7;
  --caution-ink: #8a5a00;
  --caution-soft: #fcefcf;

  --font-display: 'Quicksand', 'Quicksand Fallback', ui-sans-serif, system-ui, sans-serif;
  --font-label: 'Public Sans', 'Public Sans Fallback', ui-sans-serif, system-ui, sans-serif;

  --gradient-cta: linear-gradient(135deg, #1c8a50, #58b02c);
  --gradient-hero: linear-gradient(135deg, #147a45, #3f9c3d, #6fbf2e);

  --shadow-card:
    0 1px 2px rgba(18, 40, 24, 0.06), 0 6px 16px rgba(18, 40, 24, 0.07),
    0 12px 32px rgba(18, 40, 24, 0.05);
  --shadow-hero:
    0 2px 4px rgba(18, 40, 24, 0.07), 0 10px 24px rgba(18, 40, 24, 0.09),
    0 20px 48px rgba(18, 40, 24, 0.07);
  --shadow-cta: 0 2px 6px rgba(20, 122, 69, 0.28), 0 8px 20px rgba(20, 122, 69, 0.22);

  /* Breiten-Rollen einmal definiert (Learnings §9/§10): eine zentrierte Content-Spalte. */
  --page-max: 440px;
  --gutter: 24px;
  --shot-w: 270px;
  --header-h: 84px; /* für scroll-padding-top (Sticky-Header + Puffer) */
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-padding-top: var(--header-h);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-display);
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Der Mock rahmt den Inhalt als 402px-Karte; hier ist die Seite die Fläche,
   Inhalt in einer zentrierten Spalte. Ab 768 px übernimmt der Desktop-Block
   am Dateiende (S4c): volle Breite, Sektionen mehrspaltig. */
.page {
  max-width: var(--page-max);
  margin-inline: auto;
  background: var(--bg);
}

img, picture, svg { display: block; }

/* ------------------------------------------------------------------ *
 * A11y-Basisblock (Learnings §6, von Anfang an)
 * ------------------------------------------------------------------ */
.skip-link {
  position: absolute;
  left: 8px;
  top: 8px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  font: 600 14px var(--font-label);
  text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ------------------------------------------------------------------ *
 * Icons (inline-SVG, currentColor). Ersetzt die Material-Symbols-Font.
 * ------------------------------------------------------------------ */
.icon {
  fill: currentColor;
  flex: none;
  vertical-align: middle;
}
/* Icon-Sprite-Container aus dem Fluss nehmen (rendert nichts, defs only) */
.sprite { position: absolute; }

/* ------------------------------------------------------------------ *
 * Typo (Landing darf lauter sein als die App)
 * ------------------------------------------------------------------ */
.h-hero { font: 700 34px/40px var(--font-display); letter-spacing: -0.01em; text-wrap: balance; }
.h-big { font: 700 28px/34px var(--font-display); letter-spacing: -0.01em; text-wrap: balance; }
.h-feature { font: 700 24px/30px var(--font-display); letter-spacing: -0.01em; text-wrap: balance; }
.one-liner { font: 400 16px/25px var(--font-display); color: var(--ink-2); text-wrap: pretty; }
.note { font: 400 13px/19px var(--font-display); color: var(--ink-2); text-wrap: pretty; }
.meta { font: 400 12px/16px var(--font-display); color: var(--ink-3); }
.caps {
  font: 600 11px/14px var(--font-label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.num { font-variant-numeric: tabular-nums; }

.gutter { padding-left: var(--gutter); padding-right: var(--gutter); }

/* ------------------------------------------------------------------ *
 * Buttons / Links
 * ------------------------------------------------------------------ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 16px 36px;
  border: 0;
  border-radius: 999px;
  background: var(--gradient-cta);
  color: var(--on-primary);
  font: 700 16px var(--font-label);
  text-decoration: none;
  box-shadow: var(--shadow-cta);
  cursor: pointer;
}
.btn-primary.compact { min-height: 44px; padding: 0 18px; font-size: 14px; }
.btn-block { width: 100%; }

.quiet-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 2px;
  color: var(--primary);
  font: 600 13px var(--font-display);
  text-decoration: none;
}

/* Standalone-CTA-Abstand innerhalb einer Sektion */
.cta-wrap { margin-top: 28px; }

/* ------------------------------------------------------------------ *
 * Screenshots im Geräterahmen (immer der komplette Screen, wie App-Store-Shots)
 * ------------------------------------------------------------------ */
.shot {
  aspect-ratio: 402 / 904;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-hero), inset 0 0 0 1px rgba(18, 40, 24, 0.06);
  background: var(--surface);
}
.shot img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

/* ------------------------------------------------------------------ *
 * Header (sticky)
 * ------------------------------------------------------------------ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 24px;
  background: rgba(247, 248, 242, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.topbar .actions { display: flex; align-items: center; gap: 14px; }

.wordmark {
  display: flex;
  align-items: center;
  gap: 8px;
  font: 700 19px var(--font-display);
  color: var(--primary);
}
.wordmark .dot {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--gradient-hero);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.wordmark--sm { font-size: 15px; }
.wordmark--sm .dot { width: 22px; height: 22px; }

/* ------------------------------------------------------------------ *
 * Hero
 * ------------------------------------------------------------------ */
.hero { text-align: center; padding: 48px 24px 0; }
.hero-fade { background: linear-gradient(180deg, var(--bg) 0%, #eef2e6 100%); padding-bottom: 0; }
/* KI-Badge: auffälliger als Caps-Kicker, konkurriert nicht mit der Headline */
.ki-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 16px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--surface);
  box-shadow: var(--shadow-card);
  color: var(--primary);
  font: 700 14px var(--font-label);
}
.ki-badge .icon { color: var(--accent); }
.hero .sub { margin-top: 16px; }
.hero .micro { margin-top: 12px; font: 600 12px var(--font-display); color: var(--ink-3); }
.hero .slider { margin-top: 44px; }
.hero .slider-dots { margin-top: 20px; padding-bottom: 8px; }

/* Claim-Band */
.claims { text-align: center; padding: 104px 24px 96px; }
.claims .line { font: 700 24px/34px var(--font-display); text-wrap: balance; }
.claims .line.dim { color: var(--ink-3); }

/* Feature-Blöcke */
.feature { text-align: center; padding: 0 24px 112px; }
.feature .kicker { margin-bottom: 8px; }
.feature .one-liner { margin-top: 12px; max-width: 320px; margin-left: auto; margin-right: auto; }
.feature .shot { width: var(--shot-w); margin: 32px auto 0; }
.feature .slider { margin-top: 16px; }

/* Screen-Slider (scroll-snap, Peek links/rechts) */
.slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 54px;
  margin: 0 -24px;
  scrollbar-width: none;
}
.slider::-webkit-scrollbar { display: none; }
.slide { flex: none; width: var(--shot-w); scroll-snap-align: center; }
.slide .shot { width: var(--shot-w); margin: 0; }
.slide-cap { margin-top: 12px; }
.slider-dots { display: flex; justify-content: center; gap: 6px; margin-top: 16px; }
.slider-dots span { width: 8px; height: 8px; border-radius: 999px; background: var(--border); transition: background 0.2s ease; }
.slider-dots span.on { background: var(--primary); }

/* Benefits */
.benefits { text-align: center; padding: 0 24px 112px; }
.benefits .big-line { font: 700 28px/38px var(--font-display); text-wrap: balance; }
.benefits .big-line em { font-style: normal; color: var(--primary); }
.benefits .one-liner { margin-top: 20px; max-width: 320px; margin-left: auto; margin-right: auto; }
.benefits .src { margin-top: 12px; }

/* Nutzerstimmen */
.quotes { padding: 0 24px 112px; }
.quotes .head { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 28px; }
.quote { background: var(--surface); border-radius: 24px; box-shadow: var(--shadow-card); padding: 20px; margin-top: 12px; }
.quote p { font: 400 15px/23px var(--font-display); color: var(--ink-2); }
.quote .who { margin-top: 12px; display: flex; align-items: center; gap: 10px; }
.quote .avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font: 700 13px var(--font-display);
  flex: none;
}

/* Preis */
.pricing { text-align: center; padding: 0 24px 112px; }
.pricing .sub { margin-top: 8px; }
.plans { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; text-align: left; }
.plan {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--surface);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  padding: 18px 20px;
}
.plan.best { box-shadow: var(--shadow-card), inset 0 0 0 2px var(--primary); background: var(--good-soft); }
.plan .t { font: 600 15px/20px var(--font-display); }
.plan__title-row { display: flex; align-items: center; gap: 8px; }
.plan .price { font: 700 22px/26px var(--font-display); }
.plan .per { font: 400 12px/16px var(--font-display); color: var(--ink-3); }
.plan__value { text-align: right; }
.best-pill {
  border-radius: 999px;
  padding: 4px 10px;
  background: var(--primary);
  color: #fff;
  font: 600 10px var(--font-label);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Install */
.install { text-align: center; padding: 0 24px 112px; }
.install .card {
  background: var(--surface);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  padding: 20px;
  margin-top: 16px;
  text-align: left;
}
.os-tag { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.ios-step { display: flex; align-items: center; gap: 12px; padding: 10px 0; }
.ios-step + .ios-step { border-top: 1px solid var(--border); }
.ios-step .sic {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--surface-2);
  color: var(--ink-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.ios-step .t { font: 400 15px/22px var(--font-display); }
/* Nachgebautes iOS-Teilen-Menü (dunkel, nach Tims Safari-Foto 2026-07-12).
   Provisorium bis Tims echter Screenshot (assets/ios-share-sheet.png) da ist → S2. */
.ios-sheet { margin-top: 16px; border-radius: 14px; background: #2c2c2e; overflow: hidden; }
.ios-sheet-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  font: 400 15px/19px var(--font-display);
  color: #f2f2f2;
}
.ios-sheet-row + .ios-sheet-row { border-top: 1px solid rgba(255, 255, 255, 0.12); }
.ios-sheet-row.hl { font-weight: 600; background: #3a3a3c; box-shadow: inset 0 0 0 2px var(--primary-2); }
.install .browser-link { margin-top: 16px; }
.install .sheet-cap { margin-top: 10px; text-align: center; }

/* Desktop-QR-Karte (nur bei data-platform="desktop" sichtbar, s. Plattform-Umschaltung). */
.card--desktop { text-align: center; }
.card--desktop .os-tag { justify-content: center; }
.card--desktop .qr {
  width: 180px;
  height: 180px;
  border-radius: 12px;
  display: block;
  margin: 4px auto 0;
}
.card--desktop .qr-cap { margin-top: 12px; text-align: center; }

/* Plattform-Umschaltung: platform.js setzt data-platform am <html> (Progressive
   Enhancement). Ohne JS greift keine Regel → Android- + iOS-Karte bleiben sichtbar,
   der Desktop-QR bleibt aus (er ist das einzige JS-abhängige Extra, learnings §10). */
.card--desktop { display: none; }
[data-platform='android'] .card--ios,
[data-platform='ios'] .card--android { display: none; }
[data-platform='desktop'] .card--android,
[data-platform='desktop'] .card--ios { display: none; }
[data-platform='desktop'] .card--desktop { display: block; }

/* FAQ */
.faq { padding: 0 24px 112px; }
.faq .h-big { text-align: center; margin-bottom: 16px; }
details { background: var(--surface); border-radius: 16px; box-shadow: var(--shadow-card); margin-top: 10px; }
summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  padding: 16px 18px;
  cursor: pointer;
  font: 600 15px/20px var(--font-display);
}
summary::-webkit-details-marker { display: none; }
summary .icon { color: var(--ink-3); transition: transform 0.2s ease; }
details[open] summary .icon { transform: rotate(180deg); }
details .a { padding: 0 18px 16px; }

/* Abschluss + Footer */
.final { text-align: center; padding: 0 24px 112px; }
.final .micro { margin-top: 12px; font: 600 12px var(--font-display); color: var(--ink-3); }
footer { background: var(--surface-2); padding: 28px 24px 36px; }
footer .links { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 14px; }
footer .links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--ink-2);
  font: 600 13px var(--font-display);
  text-decoration: none;
}
footer .links a[aria-current='page'] { color: var(--primary); }

/* ================================================================== *
 * Rechtsseiten (Impressum, Datenschutz) + 404 — teilen dieses Stylesheet (S3).
 * Gleiche schmale, zentrierte Content-Spalte wie die Landing (--page-max);
 * ab 768 px greift der Desktop-Block am Dateiende (S4c, breitere Lesespalte).
 * ================================================================== */

/* Auf Unterseiten ist die Wortmarke ein Link zurück zur Startseite. */
a.wordmark { text-decoration: none; }

/* Fließtext-Seiten (Impressum, Datenschutz) */
.legal { padding: 36px 24px 8px; }
.legal .h-page {
  font: 700 30px/36px var(--font-display);
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.legal .updated {
  margin-top: 8px;
  font: 600 12px/16px var(--font-label);
  letter-spacing: 0.02em;
  color: var(--ink-3);
}
.legal .lead {
  margin-top: 16px;
  font: 400 16px/25px var(--font-display);
  color: var(--ink-2);
  text-wrap: pretty;
}
.legal section { margin-top: 30px; }
.legal h2 {
  font: 700 18px/24px var(--font-display);
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.legal p,
.legal li,
.legal address {
  font: 400 15px/24px var(--font-display);
  color: var(--ink-2);
  text-wrap: pretty;
}
.legal p { margin-top: 12px; }
.legal address { margin-top: 12px; font-style: normal; }
.legal ul {
  margin-top: 12px;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal .back {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 40px;
}

/* 404 */
.notfound { text-align: center; padding: 72px 24px 96px; }
.notfound .code {
  font: 700 96px/1 var(--font-display);
  letter-spacing: -0.02em;
  color: var(--primary);
}
.notfound .h-big { margin-top: 12px; }
.notfound .one-liner {
  margin-top: 12px;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

/* ================================================================== *
 * Desktop-Layout (S4c, Entscheid Tim 2026-07-19): ab 768 px wird aus der
 * app-store-schmalen Spalte ein eigenständiges 2-/3-spaltiges Layout —
 * rein per CSS, Inhalt und Markup bleiben identisch (kein Phone-Frame-Look).
 * Prinzip: .page gibt die Breite frei, jede Sektion zentriert ihren Inhalt
 * selbst über padding-inline (so bleiben Vollflächen wie Hero-Verlauf,
 * Sticky-Header und Footer randlos). Mobil-Regeln oben bleiben unangetastet.
 * ================================================================== */
@media (min-width: 768px) {
  :root {
    --content-max: 1040px; /* Breite der Inhaltsspalte auf großen Screens */
    --content-narrow: 720px; /* Lesespalte: FAQ + Rechtsseiten + 404 */
    --gutter-desktop: 48px;
  }

  .page { max-width: none; }

  /* Sektionen zentrieren ihren Inhalt selbst; Hintergrundflächen laufen durch. */
  .topbar,
  footer,
  .hero,
  .claims,
  .feature,
  .benefits,
  .quotes,
  .pricing,
  .install,
  .final {
    padding-inline: max(var(--gutter-desktop), calc((100% - var(--content-max)) / 2));
  }
  .faq,
  .legal,
  .notfound {
    padding-inline: max(var(--gutter-desktop), calc((100% - var(--content-narrow)) / 2));
  }

  /* Typo darf auf großen Screens zulegen (Landing ist lauter als die App). */
  .h-hero { font-size: clamp(38px, 3.4vw, 46px); line-height: 1.16; }
  .h-big { font-size: 32px; line-height: 40px; }
  .h-feature { font-size: clamp(26px, 2.4vw, 32px); line-height: 1.25; }
  .claims .line { font-size: clamp(26px, 2.5vw, 32px); line-height: 1.42; }

  /* Hero 2-spaltig: Text links (vertikal zentriert), Screenshot-Slider rechts.
     Der Slider bleibt scroll-snap-fähig (ein Shot sichtbar, Dots darunter). */
  .hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: 1fr auto auto auto auto 1fr auto;
    column-gap: clamp(40px, 6vw, 88px);
    text-align: left;
    padding-top: 56px;
    padding-bottom: 40px;
  }
  .hero .ki-badge { grid-row: 2; justify-self: start; }
  .hero .h-hero { grid-row: 3; }
  .hero .sub { grid-row: 4; max-width: 44ch; }
  .hero .cta-wrap { grid-row: 5; }
  .hero .slider {
    grid-column: 2;
    grid-row: 1 / 7;
    width: var(--shot-w);
    margin: 0;
    padding: 4px 0;
  }
  .hero .slider-dots { grid-column: 2; grid-row: 7; }

  /* Feature-Blöcke 2-spaltig, Screenshot-Seite alternierend.
     Ausnahme: der Entdecken-Block mit Slider bleibt zentriert (s. unten). */
  .feature {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: 1fr auto auto auto 1fr;
    column-gap: clamp(40px, 6vw, 88px);
    text-align: left;
  }
  .feature .kicker { grid-row: 2; }
  .feature .h-feature { grid-row: 3; }
  .feature .one-liner { grid-row: 4; margin-left: 0; margin-right: 0; max-width: 44ch; }
  .feature .shot {
    grid-column: 2;
    grid-row: 1 / -1;
    width: clamp(270px, 24vw, 320px);
    margin: 0;
  }
  .feature:nth-of-type(even) { grid-template-columns: auto minmax(0, 1fr); }
  .feature:nth-of-type(even) .shot { grid-column: 1; }
  .feature:nth-of-type(even) .kicker,
  .feature:nth-of-type(even) .h-feature,
  .feature:nth-of-type(even) .one-liner { grid-column: 2; }

  /* Entdecken-Block (einziger .feature mit Slider): zentriert lassen,
     der Slider selbst wird erst ab 1080 px statisch 3-nebeneinander. */
  .feature:has(.slider) { display: block; text-align: center; }
  .feature:has(.slider) .one-liner { margin-inline: auto; }

  /* Nutzerstimmen: auf Tablet-Breite eine ruhige, schmalere Spalte. */
  .quote { max-width: 560px; margin-left: auto; margin-right: auto; }

  /* Preis: beide Pläne nebeneinander. */
  .plans {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    max-width: 680px;
    margin-inline: auto;
  }
  .plan { flex: 1 1 0; }

  /* Install: Karten als zentrierte Kachel; die Desktop-QR-Karte
     (data-platform="desktop") sitzt damit mittig unter der Überschrift. */
  .install .card { max-width: 420px; margin-left: auto; margin-right: auto; }

  .benefits .one-liner { max-width: 480px; }

  footer .note { max-width: 62ch; }
}

/* Breite Screens: Nutzerstimmen 3-spaltig, Entdecken-Slider statisch. */
@media (min-width: 1080px) {
  .quotes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: stretch;
  }
  .quotes .head { grid-column: 1 / -1; }
  .quote { max-width: none; margin: 0; }

  /* Alle 3 Entdecken-Shots passen nebeneinander: Scrollen + Dots entfallen. */
  .feature .slider {
    justify-content: center;
    overflow-x: visible;
    margin: 32px 0 0;
    padding: 4px 0;
  }
  .feature .slider-dots { display: none; }
}
