/* cozii Marketing-Seiten (cozii.de Apex) — gemeinsames Stylesheet.
 *
 * Basis-Tokens kommen aus /app/neutral-theme.css (wird davor geladen) — dieselbe
 * Palette wie Salon-Backend, Onboarding, Buchung und Portal. Hier stehen nur die
 * Marketing-Komponenten. Der Multicolor-Verlauf (--accent-gradient) ist die
 * Signatur der Marke und wird bewusst sparsam eingesetzt: als 3px-Streifen ganz
 * oben, auf der Terminbuch-Karte im Hero und am hervorgehobenen Preis-Paket.
 *
 * Erzeugt werden die Seiten aus marketing-src/ via scripts/build-marketing.js —
 * NICHT die Dateien in public/marketing/*.html oder public/landing.html direkt
 * editieren, sondern die Quellen unter marketing-src/pages/.
 */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--ui); font-size: 16px; line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
::selection { background: var(--accent-soft); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
img { max-width: 100%; }

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* Marken-Signatur: schmaler Multicolor-Streifen an der Oberkante der Seite
   (identisch zur Topbar des Salon-Backends). */
.topstripe { height: 3px; background: var(--accent-gradient); }

/* ── Header ─────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(246, 247, 248, 0.85); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 18px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; line-height: 1; }
.brand img { height: 26px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 24px; font-size: 14px; font-weight: 600; color: var(--ink-2); }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); box-shadow: 0 2px 0 var(--accent); }
.nav-cta { margin-left: 4px; }

.nav-burger {
  display: none; background: none; border: 1px solid var(--line-strong); border-radius: 10px;
  width: 40px; height: 40px; cursor: pointer; color: var(--ink);
  align-items: center; justify-content: center;
}
.nav-panel { display: none; }
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-panel {
    display: none; border-top: 1px solid var(--line); background: var(--surface);
    padding: 10px 24px 18px;
  }
  .nav-panel.open { display: block; }
  .nav-panel a {
    display: block; padding: 12px 2px; text-decoration: none;
    font-size: 15px; font-weight: 600; color: var(--ink-2);
    border-bottom: 1px solid var(--line);
  }
  .nav-panel a:hover, .nav-panel a.active { color: var(--ink); }
  .nav-panel .nav-panel-cta { margin-top: 14px; border-bottom: 0; }
}

/* ── Buttons — Proportionen wie .admin-button, Pill-Form der Kundenflächen ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: 600 14.5px/1 var(--ui); padding: 13px 22px; border-radius: 999px;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: #000; }
.btn-ghost { border-color: var(--line-strong); background: var(--surface); color: var(--ink); }
.btn-ghost:hover { border-color: var(--accent); }
.btn-small { padding: 10px 18px; font-size: 13.5px; }

/* ── Typo-Bausteine ─────────────────────────────────────────────────── */
.eyebrow {
  font: 700 11.5px var(--ui); letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-dark); margin: 0 0 18px;
}
h1 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(40px, 5.8vw, 68px); line-height: 1.04; letter-spacing: -0.012em;
  margin: 0 0 22px;
}
h1 em, h2 em { font-style: italic; color: var(--accent-dark); font-weight: 500; }
.lead { max-width: 560px; font-size: clamp(16px, 1.9vw, 18.5px); color: var(--ink-2); margin: 0 0 32px; }

section.block { padding: 84px 0; }
section.block.tight { padding: 56px 0; }
.section-head { max-width: 660px; margin: 0 0 44px; }
.section-head.center { margin: 0 auto 44px; text-align: center; }
.section-head h2 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(30px, 4.2vw, 44px); line-height: 1.1; margin: 0 0 12px;
}
.section-head p { color: var(--ink-2); margin: 0; }

/* ── Hero ───────────────────────────────────────────────────────────── */
.hero { padding: 76px 0 80px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 56px; align-items: center; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note { margin-top: 20px; font-size: 13.5px; color: var(--muted); display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.hero-note .sep { color: var(--line-strong); }
.hero-note strong { color: var(--accent-dark); font-weight: 700; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
}

/* Signatur: das Terminbuch, das sich von selbst füllt (Hero der Startseite) */
.book {
  position: relative; background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius-l); box-shadow: var(--shadow);
  padding: 25px 22px 16px; max-width: 400px; justify-self: end; width: 100%;
  overflow: hidden;
}
.book::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--accent-gradient); }
.book-head { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 1px solid var(--line); padding-bottom: 12px; margin-bottom: 6px; }
.book-head .day { font-family: var(--display); font-size: 21px; font-weight: 600; }
.book-head .hours { font: 500 12px 'JetBrains Mono', ui-monospace, monospace; color: var(--muted); }
.slot {
  display: flex; gap: 14px; align-items: baseline; padding: 11px 2px;
  border-bottom: 1px dashed var(--line);
  opacity: 0; transform: translateY(6px); animation: slot-in 0.5s ease forwards;
}
.slot:nth-child(2) { animation-delay: 0.15s; } .slot:nth-child(3) { animation-delay: 0.3s; }
.slot:nth-child(4) { animation-delay: 0.45s; } .slot:nth-child(5) { animation-delay: 0.6s; }
.slot:last-child { border-bottom: 0; }
.slot time { font: 500 13px 'JetBrains Mono', ui-monospace, monospace; color: var(--accent-dark); min-width: 46px; }
.slot .what { font-size: 14.5px; font-weight: 600; }
.slot .who { font-size: 13px; color: var(--muted); margin-left: auto; white-space: nowrap; }
.slot.pause time, .slot.pause .what { color: var(--muted); font-weight: 500; }
.slot.new .badge {
  font: 600 10.5px var(--ui); letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--pink); background: var(--pink-soft); border-radius: 999px;
  padding: 4px 9px; margin-left: auto;
  opacity: 0; animation: badge-in 0.45s ease 1.15s forwards;
}
.book-foot { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; font-size: 12.5px; color: var(--muted); }
.book-foot b { font: 600 13px 'JetBrains Mono', ui-monospace, monospace; color: var(--ink); }
@keyframes slot-in { to { opacity: 1; transform: none; } }
@keyframes badge-in { from { opacity: 0; transform: scale(0.85); } to { opacity: 1; transform: scale(1); } }
@media (max-width: 900px) { .book { justify-self: center; } }

/* ── Karten ─────────────────────────────────────────────────────────── */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cards.two { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-s);
}
.card h3 { font-size: 16.5px; font-weight: 700; margin: 14px 0 7px; }
.card p { color: var(--ink-2); font-size: 14.5px; margin: 0; }
.card .ic {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--accent-soft); color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
}
.card .more { display: inline-block; margin-top: 14px; font-size: 13.5px; font-weight: 700; color: var(--accent-dark); text-decoration: none; }
.card .more:hover { text-decoration: underline; }
/* Code-Schnipsel (Buchungswidgets): darf nie die Karte sprengen — lange Zeilen scrollen im Block. */
pre.code {
  margin: 14px 0 0; padding: 14px; border-radius: 10px;
  background: var(--ink); color: #f3f3f3; overflow-x: auto;
}
pre.code code { font: 500 12px/1.6 var(--mono, ui-monospace, SFMono-Regular, Menlo, monospace); white-space: pre; }
.tag {
  display: inline-block; font: 600 10.5px var(--ui); letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--accent-dark); background: var(--accent-soft);
  border-radius: 999px; padding: 3px 9px; margin-left: 8px; vertical-align: 2px;
}
@media (max-width: 920px) { .cards, .cards.two { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cards, .cards.two { grid-template-columns: 1fr; } }

/* Modul-Teaser mit Screenshot-Anschnitt (Startseite) */
.card--media { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.card--media .media { border-bottom: 1px solid var(--line); background: var(--bg-2); aspect-ratio: 16 / 9.4; overflow: hidden; }
.card--media .media img { width: 100%; height: 100%; object-fit: cover; object-position: top left; display: block; }
.card--media .body { padding: 20px 22px 22px; }
.card--media h3 { margin-top: 0; }

/* ── Screenshots: Browser-Rahmen macht echte Screenshots zu Objekten ── */
.shot {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden;
}
.shot-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-bottom: 1px solid var(--line); background: var(--surface);
}
.shot-bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--line-2); }
.shot-bar .addr {
  margin-left: 10px; font: 500 11.5px 'JetBrains Mono', ui-monospace, monospace;
  color: var(--muted); background: var(--soft); border-radius: 999px; padding: 3px 12px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.shot img { display: block; width: 100%; height: auto; }

/* Telefon-Rahmen für Mobile-Screenshots */
.shot--phone {
  border-radius: 34px; border: 1px solid var(--line);
  background: var(--ink); padding: 10px; box-shadow: var(--shadow);
  max-width: 300px;
}
.shot--phone img { display: block; width: 100%; height: auto; border-radius: 24px; }

/* Nebeneinander: Text + Screenshot, alternierend */
.split { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 52px; align-items: center; }
.split.rev { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
.split.rev .split-copy { order: 2; }
.split h2 { font-family: var(--display); font-weight: 500; font-size: clamp(26px, 3.4vw, 36px); line-height: 1.12; margin: 0 0 14px; }
.split p { color: var(--ink-2); font-size: 15px; margin: 0 0 12px; }
.split + .split { margin-top: 72px; }
@media (max-width: 900px) {
  .split, .split.rev { grid-template-columns: 1fr; gap: 28px; }
  .split.rev .split-copy { order: 0; }
}

/* Häkchen-Liste */
.check-list { list-style: none; margin: 18px 0 0; padding: 0; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; padding: 7px 0; font-size: 15px; color: var(--ink-2); }
.check-list li::before {
  content: "✓"; font-weight: 800; color: var(--success);
  background: var(--success-soft); border-radius: 50%;
  width: 22px; height: 22px; flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; margin-top: 2px;
}
.check-list b { color: var(--ink); }

/* ── Dunkles Band (Ton der Backend-Sidebar) ─────────────────────────── */
.band { background: #1b1e24; color: #f3f4f6; }
.band .section-head h2 { color: #fff; }
.band .section-head p { color: #9aa1ad; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { background: #22262e; border: 1px solid rgba(243, 244, 246, 0.08); border-radius: var(--radius); padding: 26px 24px; }
.step .n { font: 800 12px 'JetBrains Mono', ui-monospace, monospace; color: var(--warn); letter-spacing: 0.08em; }
.step h3 { font-family: var(--display); font-weight: 500; font-size: 23px; margin: 10px 0 8px; color: #fff; }
.step p { color: #9aa1ad; font-size: 14.5px; margin: 0; }
.step .addr {
  display: inline-block; font: 500 12.5px 'JetBrains Mono', ui-monospace, monospace;
  color: #8ab4ff; background: rgba(37, 99, 235, 0.16); border-radius: 8px;
  padding: 5px 9px; margin-top: 12px;
}
@media (max-width: 820px) { .steps-grid { grid-template-columns: 1fr; } }

/* ── Preisliste (Signatur: punktierte Leader wie auf einer Salon-Preisliste) ── */
.pricing-note {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 700; color: var(--accent-dark);
  background: var(--accent-soft); border-radius: 999px; padding: 8px 16px; margin-bottom: 14px;
}
.pricing-note[hidden] { display: none; }
.pricelist {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-l);
  max-width: 760px; margin: 0 auto; padding: 14px 34px 8px; box-shadow: var(--shadow);
}
.plan { padding: 26px 0; border-bottom: 1px solid var(--line); }
.plan:last-of-type { border-bottom: 0; }
.plan-row { display: flex; align-items: baseline; gap: 14px; }
.plan-name { font-family: var(--display); font-weight: 600; font-size: 26px; white-space: nowrap; }
.plan-badge {
  font: 600 10.5px var(--ui); letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--accent-dark); background: var(--accent-soft); border-radius: 999px;
  padding: 4px 10px; white-space: nowrap;
}
.plan-dots { flex: 1; border-bottom: 2px dotted var(--line-strong); transform: translateY(-6px); min-width: 30px; }
.plan-price { font: 600 21px 'JetBrains Mono', ui-monospace, monospace; white-space: nowrap; }
.plan-price small { font: 500 12.5px 'JetBrains Mono', ui-monospace, monospace; color: var(--muted); }
.plan-desc { color: var(--ink-2); font-size: 14.5px; margin: 10px 0 16px; max-width: 520px; }
.plan .btn { padding: 11px 20px; }
.pricing-foot { max-width: 760px; margin: 18px auto 0; text-align: center; font-size: 13px; color: var(--muted); }
@media (max-width: 560px) {
  .pricelist { padding: 8px 20px 4px; }
  .plan-row { flex-wrap: wrap; gap: 8px; }
  .plan-dots { display: none; }
  .plan-price { margin-left: auto; }
}

/* Preisseite: zwei Paket-Karten nebeneinander */
.plan-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 880px; margin: 0 auto; align-items: stretch; }
.plan-card {
  position: relative; background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius-l); padding: 30px 28px; box-shadow: var(--shadow-s);
  display: flex; flex-direction: column; overflow: hidden;
}
.plan-card.featured { border-color: var(--line-strong); box-shadow: var(--shadow); }
.plan-card.featured::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--accent-gradient); }
.plan-card .plan-name { font-size: 28px; }
.plan-card .plan-price { font-size: 26px; margin: 8px 0 2px; display: block; }
.plan-card .plan-desc { margin: 8px 0 4px; }
.plan-card .check-list { margin-bottom: 22px; flex: 1; }
.plan-card .check-list li { font-size: 14.5px; padding: 6px 0; }
@media (max-width: 760px) { .plan-cards { grid-template-columns: 1fr; } }

/* „Immer enthalten"-Leiste */
.included { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.included span {
  font-size: 13.5px; font-weight: 600; color: var(--ink-2);
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 999px; padding: 9px 16px;
}

/* ── FAQ ────────────────────────────────────────────────────────────── */
.faq { max-width: 720px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 2px; font-size: 16px; font-weight: 600;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-family: var(--display); font-size: 24px;
  color: var(--accent); transition: transform 0.2s; line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .a { padding: 0 2px 22px; color: var(--ink-2); font-size: 14.5px; max-width: 620px; }

/* ── Abschluss-CTA ──────────────────────────────────────────────────── */
.cta-final { padding: 20px 0 90px; }
.cta-box {
  position: relative; background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius-l); padding: 58px 40px; text-align: center;
  box-shadow: var(--shadow); overflow: hidden;
}
.cta-box::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--accent-gradient); }
.cta-box h2 { font-family: var(--display); font-weight: 500; font-size: clamp(30px, 4.6vw, 46px); margin: 0 0 12px; }
.cta-box p { color: var(--ink-2); max-width: 480px; margin: 0 auto 28px; }

/* ── Startseite 2026 — eigenständig gekapseltes SaaS-Layout ───────── */
.home-page {
  --home-navy: #0b1220;
  --home-navy-2: #121d32;
  --home-copy: #172033;
  --home-muted: #5f6b7d;
  background: #f7f8fb;
  color: var(--home-copy);
  font-family: var(--ui);
  overflow: hidden;
}
.home-page .wrap { max-width: 1200px; }
.home-page h1,
.home-page h2,
.home-page h3 {
  font-family: var(--ui);
  font-style: normal;
  text-wrap: balance;
}
.home-page h2 {
  color: var(--home-copy);
  font-size: clamp(34px, 4.4vw, 54px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.06;
  margin: 0;
}
.home-page p { text-wrap: pretty; }
.home-page [id] { scroll-margin-top: 84px; }

.home-eyebrow {
  color: #4f7cff;
  font: 700 11.5px/1.3 var(--ui);
  letter-spacing: 0.16em;
  margin: 0 0 18px;
  text-transform: uppercase;
}
.home-section {
  padding: 112px 0;
}
.home-section-head {
  margin: 0 0 52px;
  max-width: 720px;
}
.home-section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.home-section-head > p:last-child {
  color: var(--home-muted);
  font-size: 17px;
  line-height: 1.7;
  margin: 20px 0 0;
}

/* Full-Width-Cover mit echten Produktansichten */
.home-hero {
  align-items: center;
  background: var(--home-navy);
  display: flex;
  isolation: isolate;
  min-height: min(820px, calc(100svh - 67px));
  overflow: hidden;
  padding: 86px 0 96px;
  position: relative;
}
.home-hero-cover {
  filter: blur(8px) saturate(0.8) contrast(0.9);
  height: 100%;
  inset: 0;
  max-width: none;
  object-fit: cover;
  object-position: center top;
  opacity: 0.62;
  position: absolute;
  transform: scale(1.045);
  width: 100%;
  z-index: -3;
}
.home-hero-overlay {
  background:
    radial-gradient(circle at 82% 34%, rgba(57, 104, 255, 0.24), transparent 32%),
    linear-gradient(90deg, rgba(7, 13, 24, 0.98) 0%, rgba(8, 15, 27, 0.94) 38%, rgba(8, 15, 27, 0.62) 72%, rgba(8, 15, 27, 0.76) 100%),
    linear-gradient(180deg, rgba(6, 11, 21, 0.08), rgba(6, 11, 21, 0.65));
  inset: 0;
  position: absolute;
  z-index: -2;
}
.home-hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(42px, 5vw, 76px);
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  max-width: 1280px !important;
  position: relative;
  width: 100%;
}
.home-hero-copy { max-width: 650px; }
.home-hero .home-eyebrow { color: #92adff; }
.home-hero h1 {
  color: #fff;
  font-size: clamp(48px, 6.2vw, 78px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.99;
  margin: 0;
  max-width: 680px;
}
.home-lead {
  color: rgba(237, 242, 251, 0.78);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.65;
  margin: 26px 0 0;
  max-width: 600px;
}
.home-hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.home-page .home-btn-primary {
  background: #fff;
  border-color: #fff;
  color: #0b1220;
  padding: 15px 24px;
}
.home-page .home-btn-primary:hover {
  background: #e9efff;
  border-color: #e9efff;
}
.home-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
  padding: 15px 24px;
}
.home-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.42);
}
.home-hero-note {
  align-items: center;
  color: rgba(224, 231, 243, 0.62);
  display: flex;
  flex-wrap: wrap;
  font-size: 13.5px;
  gap: 8px;
  margin: 22px 0 0;
}
.home-hero-note strong { color: #b9caff; }
.home-hero-note .sep { color: rgba(255, 255, 255, 0.28); }
.home-product-stack {
  min-width: 0;
  padding: 0 36px 46px 0;
  position: relative;
}
.home-browser-frame,
.home-dashboard-shot {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  box-shadow: 0 40px 90px -36px rgba(0, 0, 0, 0.72);
  overflow: hidden;
}
.home-browser-frame {
  transform: translateX(3%);
}
.home-browser-bar {
  align-items: center;
  background: #f7f8fa;
  border-bottom: 1px solid #e2e6ec;
  display: flex;
  gap: 6px;
  min-height: 38px;
  padding: 9px 12px;
}
.home-browser-bar > span {
  background: #cdd3dc;
  border-radius: 50%;
  display: block;
  height: 8px;
  width: 8px;
}
.home-browser-bar b {
  background: #eceff3;
  border-radius: 999px;
  color: #7a8493;
  font: 500 10.5px/1.2 'JetBrains Mono', ui-monospace, monospace;
  margin-left: 8px;
  max-width: 260px;
  overflow: hidden;
  padding: 4px 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.home-browser-frame > img,
.home-dashboard-shot > img {
  display: block;
  height: auto;
  width: 100%;
}
.home-phone-preview {
  background: #080d16;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 27px;
  bottom: 0;
  box-shadow: 0 28px 58px -20px rgba(0, 0, 0, 0.88);
  padding: 7px;
  position: absolute;
  right: 0;
  width: clamp(112px, 12vw, 158px);
}
.home-phone-preview img {
  border-radius: 20px;
  display: block;
  height: auto;
  width: 100%;
}

/* Plattformmodule */
.home-platform { background: #f7f8fb; }
.home-feature-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.home-feature-card {
  background: #fff;
  border: 1px solid #e5e8ee;
  border-radius: 22px;
  box-shadow: 0 12px 34px -28px rgba(29, 42, 65, 0.42);
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.home-feature-card:hover {
  border-color: #cfd7e6;
  box-shadow: 0 26px 55px -34px rgba(29, 42, 65, 0.48);
  transform: translateY(-3px);
}
.home-feature-media {
  aspect-ratio: 16 / 9.2;
  background: #edf0f5;
  border-bottom: 1px solid #e5e8ee;
  overflow: hidden;
}
.home-feature-media img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  transition: transform 0.35s ease;
  width: 100%;
}
.home-feature-card:hover .home-feature-media img { transform: scale(1.015); }
.home-feature-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px 30px 30px;
}
.home-feature-number {
  color: #7c8aa1;
  font: 700 11px/1 var(--ui);
  letter-spacing: 0.14em;
}
.home-feature-body h3 {
  color: var(--home-copy);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 12px 0 10px;
}
.home-feature-body p {
  color: var(--home-muted);
  flex: 1;
  font-size: 15.5px;
  line-height: 1.65;
  margin: 0;
}
.home-feature-body a {
  color: #315fdc;
  font-size: 14px;
  font-weight: 700;
  margin-top: 22px;
  text-decoration: none;
}
.home-feature-body a:hover { text-decoration: underline; }
.home-tag {
  background: #e9efff;
  border-radius: 999px;
  color: #315fdc;
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.08em;
  margin-left: 6px;
  padding: 4px 8px;
  text-transform: uppercase;
  vertical-align: 3px;
}

/* Dashboard und Produktbeweis */
.home-dashboard {
  background: #fff;
  border-bottom: 1px solid #e9ebf0;
  border-top: 1px solid #e9ebf0;
}
.home-split {
  align-items: center;
  display: grid;
  gap: clamp(50px, 7vw, 92px);
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
}
.home-split-copy h2 { max-width: 540px; }
.home-split-copy > p:not(.home-eyebrow) {
  color: var(--home-muted);
  font-size: 17px;
  line-height: 1.7;
  margin: 22px 0 0;
  max-width: 580px;
}
.home-check-list {
  display: grid;
  gap: 13px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}
.home-check-list li {
  align-items: center;
  color: #354155;
  display: flex;
  font-size: 15px;
  font-weight: 600;
  gap: 12px;
}
.home-check-list li::before {
  align-items: center;
  background: #e9f7f0;
  border-radius: 50%;
  color: #07845f;
  content: "✓";
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 800;
  height: 23px;
  justify-content: center;
  width: 23px;
}
.home-dashboard-shot {
  border-color: #dfe3ea;
  box-shadow: 0 32px 70px -42px rgba(20, 34, 58, 0.5);
}

/* Einrichtung */
.home-steps-section {
  background:
    radial-gradient(circle at 14% 20%, rgba(53, 94, 222, 0.22), transparent 25%),
    var(--home-navy);
  color: #fff;
}
.home-steps-section .home-section-head h2 { color: #fff; }
.home-steps-section .home-section-head > p:last-child { color: rgba(225, 232, 245, 0.66); }
.home-steps-section .home-eyebrow { color: #92adff; }
.home-steps-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.home-step {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  min-height: 250px;
  padding: 30px;
}
.home-step-number {
  color: #8fabff;
  font: 700 12px/1 var(--ui);
  letter-spacing: 0.14em;
}
.home-step h3 {
  color: #fff;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 54px 0 10px;
}
.home-step p {
  color: rgba(225, 232, 245, 0.64);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}
.home-address {
  background: rgba(78, 120, 255, 0.15);
  border-radius: 8px;
  color: #a8bbff;
  display: inline-block;
  font: 500 12px/1.2 'JetBrains Mono', ui-monospace, monospace;
  margin-top: 16px;
  padding: 7px 10px;
}

/* Online-Buchung */
.home-booking { background: #f7f8fb; }
.home-booking-grid {
  align-items: center;
  display: grid;
  gap: clamp(50px, 9vw, 120px);
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
}
.home-booking-visual {
  min-height: 600px;
  position: relative;
}
.home-booking-glow {
  background: radial-gradient(circle, rgba(74, 112, 235, 0.24) 0%, rgba(74, 112, 235, 0.08) 42%, transparent 70%);
  inset: 5% -20%;
  position: absolute;
}
.home-booking-phone {
  background: #0d1421;
  border: 1px solid #273146;
  border-radius: 42px;
  box-shadow: 0 38px 70px -40px rgba(13, 25, 50, 0.7);
  left: 50%;
  max-width: 290px;
  padding: 10px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 74%;
}
.home-booking-phone img {
  border-radius: 31px;
  display: block;
  height: auto;
  width: 100%;
}
.home-booking .btn {
  margin-top: 28px;
  padding: 14px 22px;
}

/* Preise als modernes SaaS-Raster */
.home-pricing {
  background: #fff;
  border-bottom: 1px solid #e9ebf0;
  border-top: 1px solid #e9ebf0;
}
.home-pricing .pricing-note { margin-bottom: 20px; }
.home-price-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.home-price-card {
  background: #f9fafc;
  border: 1px solid #e2e6ed;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  min-height: 290px;
  padding: 28px;
  position: relative;
}
.home-price-card--featured {
  background: #f4f7ff;
  border-color: #9bb2f6;
  box-shadow: inset 0 3px 0 #3c6bec;
}
.home-price-heading {
  align-items: flex-start;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.home-price-card h3 {
  color: var(--home-copy);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 9px 0 0;
}
.home-price-badge {
  color: #5f6d82;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.home-price {
  color: var(--home-copy);
  font: 700 23px/1 var(--ui);
  margin: 6px 0 0;
  text-align: right;
  white-space: nowrap;
}
.home-price small {
  color: #778297;
  display: block;
  font-size: 11px;
  font-weight: 600;
  margin-top: 7px;
}
.home-price-card > p:not(.home-price) {
  color: var(--home-muted);
  flex: 1;
  font-size: 15px;
  line-height: 1.65;
  margin: 28px 0 24px;
  max-width: 470px;
}
.home-price-card .btn {
  align-self: flex-start;
  padding: 12px 19px;
}
.home-price-card--featured .btn-primary { background: #13213b; }
.home-price-card--featured .btn-primary:hover { background: #050a13; }
.home-pricing-foot {
  color: #7b8597;
  font-size: 13.5px;
  margin: 24px 0 0;
  text-align: center;
}
.home-pricing-foot a { color: #315fdc; font-weight: 700; }

/* FAQ */
.home-faq-section { background: #f7f8fb; }
.home-faq {
  background: #fff;
  border: 1px solid #e3e7ed;
  border-radius: 20px;
  margin: 0 auto;
  max-width: 860px;
  overflow: hidden;
  padding: 0 28px;
}
.home-faq details { border-bottom: 1px solid #e8ebf0; }
.home-faq details:last-child { border-bottom: 0; }
.home-faq summary {
  align-items: center;
  color: var(--home-copy);
  cursor: pointer;
  display: flex;
  font-size: 16px;
  font-weight: 700;
  gap: 20px;
  justify-content: space-between;
  list-style: none;
  padding: 24px 2px;
}
.home-faq summary::-webkit-details-marker { display: none; }
.home-faq summary::after {
  align-items: center;
  border: 1px solid #d8deea;
  border-radius: 50%;
  color: #315fdc;
  content: "+";
  display: inline-flex;
  flex: 0 0 auto;
  font: 500 20px/1 var(--ui);
  height: 28px;
  justify-content: center;
  transition: transform 0.2s ease;
  width: 28px;
}
.home-faq details[open] summary::after { transform: rotate(45deg); }
.home-faq-answer {
  color: var(--home-muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 720px;
  padding: 0 2px 26px;
}
.home-faq-answer a { color: #315fdc; font-weight: 700; }

/* Abschluss */
.home-final {
  background: #f7f8fb;
  padding: 0 0 112px;
}
.home-final-card {
  align-items: center;
  background:
    radial-gradient(circle at 84% 10%, rgba(74, 111, 232, 0.34), transparent 32%),
    var(--home-navy);
  border-radius: 24px;
  color: #fff;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  overflow: hidden;
  padding: 54px 58px;
}
.home-final .home-eyebrow { color: #92adff; }
.home-final h2 {
  color: #fff;
  font-size: clamp(36px, 4.5vw, 52px);
}
.home-final-card p:not(.home-eyebrow) {
  color: rgba(225, 232, 245, 0.68);
  font-size: 16px;
  margin: 16px 0 0;
  max-width: 650px;
}
.home-final-card .btn { flex: 0 0 auto; }
.home-page + .site-footer { margin-top: 0; }

@media (max-width: 960px) {
  .home-hero {
    min-height: auto;
    padding: 76px 0 96px;
  }
  .home-hero-grid {
    gap: 58px;
    grid-template-columns: 1fr;
  }
  .home-hero-copy { max-width: 720px; }
  .home-product-stack {
    margin: 0 auto;
    max-width: 760px;
    padding-right: 44px;
    width: 100%;
  }
  .home-browser-frame { transform: none; }
  .home-split,
  .home-booking-grid {
    gap: 54px;
    grid-template-columns: 1fr;
  }
  .home-dashboard-shot { order: -1; }
  .home-booking-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); }
  .home-booking-visual { min-height: 510px; }
  .home-steps-grid { grid-template-columns: 1fr; }
  .home-step { min-height: 0; }
  .home-step h3 { margin-top: 28px; }
}

@media (max-width: 720px) {
  .home-section { padding: 78px 0; }
  .home-section-head { margin-bottom: 38px; }
  .home-section-head > p:last-child,
  .home-split-copy > p:not(.home-eyebrow) { font-size: 16px; }
  .home-feature-grid,
  .home-price-grid,
  .home-booking-grid { grid-template-columns: 1fr; }
  .home-booking-visual { min-height: 520px; }
  .home-final { padding-bottom: 78px; }
  .home-final-card {
    align-items: flex-start;
    flex-direction: column;
    padding: 40px 34px;
  }
}

@media (max-width: 520px) {
  .home-page .wrap { padding-left: 20px; padding-right: 20px; }
  .home-hero { padding: 58px 0 74px; }
  .home-hero h1 { font-size: clamp(42px, 12.5vw, 56px); }
  .home-lead { font-size: 16.5px; margin-top: 22px; }
  .home-hero-actions { align-items: stretch; flex-direction: column; }
  .home-hero-actions .btn { width: 100%; }
  .home-hero-note { font-size: 12.5px; }
  .home-product-stack { padding: 0 28px 36px 0; }
  .home-browser-frame,
  .home-dashboard-shot { border-radius: 12px; }
  .home-browser-bar { min-height: 30px; padding: 7px 9px; }
  .home-browser-bar > span { height: 6px; width: 6px; }
  .home-browser-bar b { display: none; }
  .home-phone-preview {
    border-radius: 18px;
    padding: 5px;
    width: 92px;
  }
  .home-phone-preview img { border-radius: 13px; }
  .home-page h2 { font-size: clamp(33px, 10.5vw, 43px); }
  .home-section-head--center { text-align: left; }
  .home-feature-body { padding: 24px; }
  .home-feature-body h3 { font-size: 20px; }
  .home-step { padding: 26px; }
  .home-booking-visual { min-height: 500px; }
  .home-booking-phone { width: 72%; }
  .home-price-card { min-height: 0; padding: 24px; }
  .home-price-heading { gap: 12px; }
  .home-price { font-size: 20px; }
  .home-faq { padding: 0 20px; }
  .home-faq summary { font-size: 15px; padding: 21px 0; }
  .home-final-card { border-radius: 20px; padding: 36px 28px; }
  .home-final-card .btn { width: 100%; }
}

/* ── Kontakt ────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 24px; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-s); }
.contact-card h3 { margin: 0 0 10px; font-size: 17px; }
.contact-card p { color: var(--ink-2); font-size: 14.5px; margin: 0 0 10px; }
.contact-card a { color: var(--accent-dark); font-weight: 600; text-decoration: none; }
.contact-card a:hover { text-decoration: underline; }
.field { display: block; margin-bottom: 16px; }
.field > span { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%; padding: 11px 13px; border: 1px solid var(--line-strong); border-radius: 10px;
  font: 500 15px var(--ui); color: var(--ink); background: var(--surface);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus {
  border-color: var(--accent); outline: none; box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.14);
}
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 12px; }
.form-ok { background: var(--success-soft); color: var(--success); border-radius: 10px; padding: 12px 16px; font-size: 14px; font-weight: 600; }
.form-err { background: var(--danger-soft); color: var(--danger); border-radius: 10px; padding: 12px 16px; font-size: 14px; margin-bottom: 14px; }
.hp { position: absolute; left: -9999px; top: -9999px; height: 1px; width: 1px; overflow: hidden; }

/* ── Footer ─────────────────────────────────────────────────────────── */
.site-footer { border-top: 1px solid var(--line); background: var(--surface); margin-top: 40px; }
.foot-grid { display: grid; grid-template-columns: minmax(0, 4fr) repeat(3, minmax(0, 2fr)); gap: 32px; padding: 52px 0 40px; }
.foot-brand img { height: 24px; width: auto; }
.foot-brand p { color: var(--muted); font-size: 13.5px; max-width: 260px; margin: 14px 0 0; }
.foot-col h4 { font: 700 11.5px var(--ui); letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin: 4px 0 14px; }
.foot-col a { display: block; text-decoration: none; color: var(--ink-2); font-size: 14px; padding: 5px 0; }
.foot-col a:hover { color: var(--ink); }
.foot-bottom {
  border-top: 1px solid var(--line); padding: 20px 0;
  display: flex; justify-content: space-between; gap: 12px 22px; flex-wrap: wrap;
  color: var(--muted); font-size: 13px;
}
@media (max-width: 820px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .foot-grid { grid-template-columns: 1fr; } }

/* ── Unterseiten-Hero ───────────────────────────────────────────────── */
.page-hero { padding: 68px 0 20px; }
.page-hero .lead { max-width: 640px; }
.page-hero.center { text-align: center; }
.page-hero.center .lead { margin-left: auto; margin-right: auto; }

/* Fakten-Zeile (dezent, statt Fake-Logos) */
.facts { display: flex; flex-wrap: wrap; gap: 10px 28px; align-items: center; color: var(--muted); font-size: 13.5px; padding: 18px 0 0; }
.facts b { color: var(--ink-2); font-weight: 700; }
.facts .sep { color: var(--line-strong); }

/* ── Rechtsseiten (Impressum/Datenschutz/AGB) ───────────────────────── */
.lg-main { max-width: 860px; margin: 0 auto; padding: 48px 24px 80px; }
.lg-card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius-l); padding: 40px; box-shadow: var(--shadow-s);
}
.lg-card h1 { font-size: clamp(30px, 4.5vw, 42px); margin: 0 0 6px; }
.lg-card h2 { font-size: 17px; font-weight: 700; margin: 30px 0 8px; font-family: var(--ui); }
.lg-card p { margin: 0 0 12px; color: var(--ink-2); }
.lg-card a { color: var(--accent-dark); }
.lg-updated { font-size: 12.5px; color: var(--muted); margin-bottom: 22px; }
.lg-todo {
  background: var(--warn-soft); border: 1px solid #f2ddb0; color: #8a5b06;
  border-radius: 10px; padding: 12px 16px; font-size: 13.5px; margin: 0 0 24px;
}
@media (max-width: 600px) { .lg-card { padding: 26px 20px; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .slot, .slot.new .badge { animation: none; opacity: 1; transform: none; }
  .btn { transition: none; }
}

/* ── Marketing-Unterseiten 2026 — SaaS-System, gekapselt ───────────── */
.marketing-page {
  --marketing-navy: #0b1220;
  --marketing-navy-2: #131e32;
  --marketing-copy: #172033;
  --marketing-muted: #5f6b7d;
  --marketing-blue: #315fdc;
  --marketing-blue-soft: #edf2ff;
  background: #f7f8fb;
  color: var(--marketing-copy);
  font-family: var(--ui);
  overflow: hidden;
}
.marketing-page + .site-footer { margin-top: 0; }
.marketing-page .wrap { max-width: 1200px; }
.marketing-page h1,
.marketing-page h2,
.marketing-page h3,
.marketing-page h4 {
  color: var(--marketing-copy);
  font-family: var(--ui);
  font-style: normal;
  text-wrap: balance;
}
.marketing-page h1 em,
.marketing-page h2 em { color: inherit; font-style: normal; font-weight: inherit; }
.marketing-page p { text-wrap: pretty; }
.marketing-page [id] { scroll-margin-top: 84px; }
.marketing-page .btn { min-height: 46px; padding-left: 23px; padding-right: 23px; }
.marketing-page .btn-primary { background: var(--marketing-navy); }
.marketing-page .btn-primary:hover { background: #18243a; }
.marketing-page .btn-ghost { background: rgba(255, 255, 255, 0.84); border-color: #dce1ea; }
.marketing-page .btn-ghost:hover { border-color: #9cadd5; }
.sr-only {
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.marketing-eyebrow {
  color: #4f7cff;
  font: 700 11.5px/1.3 var(--ui);
  letter-spacing: 0.16em;
  margin: 0 0 18px;
  text-transform: uppercase;
}
.marketing-lead {
  color: var(--marketing-muted);
  font-size: clamp(17px, 1.8vw, 19px);
  line-height: 1.72;
  margin: 24px 0 0;
  max-width: 620px;
}
.marketing-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.marketing-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  list-style: none;
  margin: 25px 0 0;
  padding: 0;
}
.marketing-proof li {
  align-items: center;
  color: #687387;
  display: flex;
  font-size: 13px;
  font-weight: 600;
  gap: 8px;
}
.marketing-proof li::before {
  background: #18a87c;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(24, 168, 124, 0.1);
  content: "";
  height: 6px;
  width: 6px;
}

/* Constrained Split-Hero: bewusst kein Full-Width-Cover wie auf der Startseite. */
.marketing-hero {
  background:
    radial-gradient(circle at 88% 15%, rgba(79, 124, 255, 0.14), transparent 31%),
    radial-gradient(circle at 9% 78%, rgba(117, 88, 255, 0.07), transparent 26%),
    #f7f8fb;
  border-bottom: 1px solid #e9ebf0;
  overflow: hidden;
  padding: 94px 0 104px;
  position: relative;
}
.marketing-hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(52px, 7vw, 92px);
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
}
.marketing-hero-copy { position: relative; z-index: 2; }
.marketing-hero h1 {
  font-size: clamp(46px, 5.2vw, 68px);
  font-weight: 720;
  letter-spacing: -0.055em;
  line-height: 0.99;
  margin: 0;
  max-width: 760px;
}
.marketing-hero-visual { padding: 26px 0 32px; position: relative; }
.marketing-hero-visual::before {
  background: linear-gradient(145deg, rgba(49, 95, 220, 0.14), rgba(101, 71, 210, 0.05));
  border: 1px solid rgba(79, 124, 255, 0.14);
  border-radius: 32px;
  content: "";
  inset: 0 -36px 0 38px;
  position: absolute;
  transform: rotate(-2deg);
}
.marketing-shot {
  background: #fff;
  border: 1px solid #dfe3ea;
  border-radius: 17px;
  box-shadow: 0 32px 70px -42px rgba(20, 34, 58, 0.54);
  overflow: hidden;
  position: relative;
}
.marketing-shot--hero { transform: perspective(1200px) rotateY(-2deg) rotateX(1deg); }
.marketing-shot-bar {
  align-items: center;
  background: #f6f7f9;
  border-bottom: 1px solid #e5e8ed;
  display: flex;
  gap: 6px;
  min-height: 34px;
  padding: 8px 12px;
}
.marketing-shot-bar i { background: #c8ced8; border-radius: 50%; height: 7px; width: 7px; }
.marketing-shot-bar span {
  background: #ebeef3;
  border-radius: 999px;
  color: #758094;
  font: 500 10px/1.3 'JetBrains Mono', ui-monospace, monospace;
  margin-left: 7px;
  max-width: 70%;
  overflow: hidden;
  padding: 3px 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.marketing-shot img { display: block; height: auto; width: 100%; }
.marketing-shot--wide { margin-top: 42px; }
.marketing-visual-badge {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #dfe4ee;
  border-radius: 12px;
  bottom: 0;
  box-shadow: 0 15px 35px -23px rgba(20, 34, 58, 0.7);
  color: #344157;
  font-size: 12.5px;
  font-weight: 700;
  padding: 11px 15px;
  position: absolute;
  right: 24px;
  z-index: 2;
}
.marketing-hero--centered { padding: 86px 0 90px; text-align: center; }
.marketing-hero--centered .marketing-hero-copy { margin: 0 auto; max-width: 860px; }
.marketing-hero--centered .marketing-lead { margin-left: auto; margin-right: auto; }
.marketing-hero--centered .marketing-proof { justify-content: center; }
.marketing-hero--centered .pricing-note { margin: 26px 0 0; }

/* Seitenraster und Inhaltsbausteine */
.marketing-section { padding: 112px 0; }
.marketing-section--white { background: #fff; }
.marketing-section--soft { background: #f4f6fa; }
.marketing-section--dark {
  background:
    radial-gradient(circle at 12% 15%, rgba(62, 103, 230, 0.22), transparent 28%),
    var(--marketing-navy);
  color: #fff;
}
.marketing-section-head { margin: 0 0 52px; max-width: 760px; }
.marketing-section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.marketing-section-head h2,
.marketing-product-copy h2,
.marketing-dark-grid h2 {
  font-size: clamp(34px, 4.3vw, 52px);
  font-weight: 710;
  letter-spacing: -0.045em;
  line-height: 1.06;
  margin: 0;
}
.marketing-section-head > p:last-child,
.marketing-product-copy > p:not(.marketing-eyebrow),
.marketing-dark-grid > div > p:not(.marketing-eyebrow) {
  color: var(--marketing-muted);
  font-size: 17px;
  line-height: 1.72;
  margin: 20px 0 0;
}
.marketing-product-copy > p + p { margin-top: 12px; }
.marketing-section--dark h2,
.marketing-section--dark h3 { color: #fff; }
.marketing-section--dark .marketing-eyebrow { color: #91aaff; }
.marketing-section--dark .marketing-section-head > p:last-child,
.marketing-section--dark .marketing-product-copy > p:not(.marketing-eyebrow),
.marketing-section--dark .marketing-dark-grid > div > p:not(.marketing-eyebrow) { color: rgba(225, 232, 245, 0.68); }

.marketing-benefit-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.marketing-benefit-grid--four { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 28px; }
.marketing-benefit-card {
  background: #fff;
  border: 1px solid #e3e6ec;
  border-radius: 18px;
  min-height: 205px;
  padding: 27px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.marketing-benefit-card:hover {
  border-color: #ced6e6;
  box-shadow: 0 20px 44px -34px rgba(20, 34, 58, 0.55);
  transform: translateY(-2px);
}
.marketing-icon,
.marketing-benefit-card > span:first-child {
  align-items: center;
  background: var(--marketing-blue-soft);
  border-radius: 9px;
  color: var(--marketing-blue);
  display: inline-flex;
  font: 700 10px/1 var(--ui);
  height: 31px;
  justify-content: center;
  letter-spacing: 0.08em;
  width: 35px;
}
.marketing-benefit-card h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.25;
  margin: 34px 0 9px;
}
.marketing-benefit-card:not(:has(> span)) h3 { margin-top: 2px; }
.marketing-benefit-card p { color: var(--marketing-muted); font-size: 14.5px; line-height: 1.65; margin: 0; }

.marketing-product-split {
  align-items: center;
  display: grid;
  gap: clamp(52px, 7vw, 90px);
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
}
.marketing-product-split--reverse { grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.78fr); }
.marketing-product-split--reverse .marketing-product-copy { order: 2; }
.marketing-product-split--phone { grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr); }
.marketing-check-list {
  display: grid;
  gap: 13px;
  list-style: none;
  margin: 27px 0 0;
  padding: 0;
}
.marketing-check-list li {
  align-items: flex-start;
  color: #354155;
  display: flex;
  font-size: 14.5px;
  font-weight: 600;
  gap: 11px;
  line-height: 1.55;
}
.marketing-check-list li::before {
  align-items: center;
  background: #e9f7f0;
  border-radius: 50%;
  color: #07845f;
  content: "✓";
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 10px;
  font-weight: 800;
  height: 22px;
  justify-content: center;
  margin-top: 1px;
  width: 22px;
}
.marketing-section--dark .marketing-check-list li { color: rgba(237, 241, 249, 0.8); }
.marketing-section--dark .marketing-check-list li::before { background: rgba(36, 183, 137, 0.15); color: #69d8b4; }
.marketing-text-link {
  color: var(--marketing-blue);
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 7px;
  margin-top: 22px;
  text-decoration: none;
}
.marketing-text-link:hover { text-decoration: underline; }

/* Geräte- und Buchungsdarstellung */
.marketing-hero-visual--booking { padding-bottom: 70px; }
.marketing-phone {
  background: #101620;
  border: 1px solid #263043;
  border-radius: 35px;
  box-shadow: 0 30px 58px -30px rgba(18, 31, 53, 0.65);
  margin: 0 auto;
  max-width: 280px;
  padding: 9px;
  position: relative;
}
.marketing-phone img { border-radius: 27px; display: block; height: auto; width: 100%; }
.marketing-phone--overlay { bottom: 0; margin: 0; max-width: 152px; position: absolute; right: -12px; z-index: 3; }
.marketing-phone--overlay img { border-radius: 20px; }
.marketing-phone-stage {
  background: radial-gradient(circle, rgba(79, 124, 255, 0.15), transparent 66%);
  min-height: 540px;
  padding: 24px;
}

/* Dunkle Ablauf- und Sicherheitsbereiche */
.marketing-dark-grid {
  align-items: start;
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
}
.marketing-dark-points { display: grid; gap: 14px; }
.marketing-dark-points article,
.marketing-security-list article {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 23px 25px;
}
.marketing-dark-points strong { color: #8faaff; font: 700 11px/1 var(--ui); letter-spacing: 0.12em; }
.marketing-dark-points h3 { font-size: 18px; margin: 17px 0 7px; }
.marketing-dark-points p { color: rgba(225, 232, 245, 0.62); font-size: 14px; line-height: 1.6; margin: 0; }
.marketing-dark-grid--privacy { align-items: center; }
.marketing-security-list { display: grid; gap: 13px; }
.marketing-security-list article { display: grid; gap: 7px; }
.marketing-security-list strong { color: #fff; font-size: 15px; }
.marketing-security-list span { color: rgba(225, 232, 245, 0.62); font-size: 13.5px; line-height: 1.55; }

/* Code- und Kommunikationsbausteine */
.marketing-code-grid { display: grid; gap: 16px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.marketing-code-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 25px;
}
.marketing-code-card > span { color: #8faaff; font: 700 11px/1 var(--ui); letter-spacing: 0.12em; }
.marketing-code-card h3 { font-size: 18px; margin: 24px 0 8px; }
.marketing-code-card p { color: rgba(225, 232, 245, 0.62); font-size: 13.5px; line-height: 1.55; margin: 0; }
.marketing-code-card pre.code { background: #080d17; border: 1px solid rgba(255, 255, 255, 0.08); margin-top: 19px; }
.marketing-inline-note {
  background: rgba(88, 125, 255, 0.13);
  border: 1px solid rgba(117, 148, 255, 0.18);
  border-radius: 999px;
  color: #aabaff;
  display: table;
  font-size: 12.5px;
  font-weight: 700;
  margin: 24px auto 0;
  padding: 8px 14px;
}
.marketing-message-panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  padding: 10px 26px;
}
.marketing-message-head,
.marketing-message-row { align-items: center; display: flex; justify-content: space-between; gap: 20px; }
.marketing-message-head { border-bottom: 1px solid rgba(255, 255, 255, 0.1); color: #fff; font-weight: 700; padding: 20px 0; }
.marketing-message-head strong { background: rgba(37, 195, 146, 0.15); border-radius: 999px; color: #6ce1bb; font-size: 11px; padding: 5px 9px; }
.marketing-message-row { border-bottom: 1px solid rgba(255, 255, 255, 0.08); color: rgba(225, 232, 245, 0.7); font-size: 13.5px; padding: 19px 0; }
.marketing-message-row:last-child { border-bottom: 0; }
.marketing-message-row b { color: #fff; font-size: 12.5px; text-align: right; }
.marketing-pill-list { display: flex; flex-wrap: wrap; gap: 11px; justify-content: center; }
.marketing-pill-list span {
  background: #f6f7fa;
  border: 1px solid #e1e5ec;
  border-radius: 999px;
  color: #4e5a6e;
  font-size: 13.5px;
  font-weight: 650;
  padding: 10px 17px;
}

/* FAQ und Abschluss */
.marketing-faq {
  background: #fff;
  border: 1px solid #e3e6ec;
  border-radius: 18px;
  box-shadow: 0 24px 50px -42px rgba(20, 34, 58, 0.6);
  max-width: 840px;
  padding: 0 27px;
}
.marketing-faq details:last-child { border-bottom: 0; }
.marketing-faq summary { color: #263145; font-family: var(--ui); font-size: 15px; font-weight: 700; padding: 23px 0; }
.marketing-faq summary::after { color: var(--marketing-blue); font-family: var(--ui); font-size: 21px; font-weight: 500; }
.marketing-faq .a { color: var(--marketing-muted); font-size: 14.5px; line-height: 1.7; max-width: 740px; padding: 0 0 23px; }
.marketing-final { background: #f7f8fb; padding: 30px 0 100px; }
.marketing-final-box {
  align-items: center;
  background:
    radial-gradient(circle at 82% 25%, rgba(61, 101, 224, 0.24), transparent 32%),
    var(--marketing-navy);
  border: 1px solid #1a2943;
  border-radius: 22px;
  box-shadow: 0 28px 60px -46px rgba(20, 34, 58, 0.75);
  display: flex;
  gap: 34px;
  justify-content: space-between;
  min-height: 260px;
  overflow: hidden;
  padding: 48px 54px;
}
.marketing-final-box .marketing-eyebrow { color: #91aaff; }
.marketing-final-box h2 { color: #fff; font-size: clamp(32px, 4vw, 48px); font-weight: 710; letter-spacing: -0.045em; line-height: 1.04; margin: 0; }
.marketing-final-box p:last-child { color: rgba(225, 232, 245, 0.62); font-size: 15px; margin: 13px 0 0; }
.marketing-final-box .btn-primary { background: #fff; color: var(--marketing-navy); flex: 0 0 auto; }
.marketing-final-box .btn-primary:hover { background: #edf1f8; }

/* Preisseite: direkter Einstieg mit vier Paketen und semantischer Vergleichstabelle */
.marketing-pricing-summary { padding-top: 72px; }
.pricing-page .marketing-section-head h1 {
  font-size: clamp(34px, 4.3vw, 52px);
  font-weight: 710;
  letter-spacing: -0.045em;
  line-height: 1.06;
  margin: 0;
}
.pricing-page .marketing-section-head > .pricing-section-note {
  color: var(--marketing-muted);
  font-size: 13px;
  line-height: 1.55;
  margin-top: 16px;
}
.pricing-section-note #trial-badge:not([hidden]) {
  color: #3155bd;
  display: block;
  font-size: 12px;
  font-weight: 750;
  margin-top: 8px;
}
.marketing-pricing-families { display: grid; gap: 22px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.marketing-pricing-family {
  background: #f7f8fb;
  border: 1px solid #e1e5ec;
  border-radius: 22px;
  padding: 18px;
}
.marketing-family-head { align-items: center; display: flex; gap: 14px; padding: 10px 8px 24px; }
.marketing-family-icon {
  align-items: center;
  background: var(--marketing-blue-soft);
  border-radius: 11px;
  color: var(--marketing-blue);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 16px;
  height: 42px;
  justify-content: center;
  width: 42px;
}
.marketing-family-head h3 { font-size: 17px; font-weight: 720; margin: 0; }
.marketing-family-head p { color: var(--marketing-muted); font-size: 12.5px; line-height: 1.5; margin: 4px 0 0; }
.marketing-price-pair { display: grid; gap: 12px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.marketing-price-card {
  background: #fff;
  border: 1px solid #e1e5ec;
  border-radius: 17px;
  display: flex;
  flex-direction: column;
  min-height: 470px;
  overflow: hidden;
  padding: 25px 22px 22px;
  position: relative;
}
.marketing-price-card--featured { border-color: #7091ff; box-shadow: 0 22px 44px -34px rgba(49, 95, 220, 0.7); }
.marketing-price-card--featured::before { background: linear-gradient(90deg, #4d73ed, #8d66ff); content: ""; height: 3px; inset: 0 0 auto; position: absolute; }
.marketing-recommended {
  align-self: flex-start;
  background: var(--marketing-blue-soft);
  border-radius: 999px;
  color: var(--marketing-blue);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  padding: 6px 9px;
  text-transform: uppercase;
}
.marketing-price-card-head { align-items: center; display: flex; flex-wrap: wrap; gap: 7px; }
.marketing-plan-label { color: #1f2a3d; font-size: 18px; font-weight: 750; letter-spacing: -0.02em; }
.marketing-plan-badge {
  background: var(--marketing-blue-soft);
  border-radius: 999px;
  color: var(--marketing-blue);
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.07em;
  padding: 4px 7px;
  text-transform: uppercase;
}
.marketing-price {
  color: #1b2638;
  display: flex;
  flex-basis: 100%;
  font: 750 25px/1 var(--ui);
  gap: 7px;
  margin: 20px 0 0;
}
.marketing-price small { align-self: flex-end; color: #7b8596; font: 500 11px/1.2 var(--ui); padding-bottom: 2px; }
.marketing-plan-copy { color: var(--marketing-muted); font-size: 13px; line-height: 1.58; margin: 18px 0 0; }
.marketing-plan-highlights { display: grid; gap: 10px; list-style: none; margin: 22px 0; padding: 0; }
.marketing-plan-highlights li { color: #344055; display: flex; font-size: 12.5px; font-weight: 650; gap: 8px; line-height: 1.45; }
.marketing-plan-highlights li::before { color: #0b9c71; content: "✓"; font-weight: 800; }
.marketing-plan-exclusion {
  background: #f7f8fa;
  border-radius: 9px;
  color: #6b7586;
  font-size: 11.5px;
  line-height: 1.45;
  margin: auto 0 18px;
  padding: 10px 11px;
}
.marketing-plan-exclusion strong { color: #4d596b; }
.marketing-plan-exclusion--positive { background: #edf8f4; color: #087858; }
.marketing-plan-exclusion--positive strong { color: #087858; }
.marketing-price-card .btn { font-size: 12.5px; min-height: 41px; padding: 11px 14px; width: 100%; }

.marketing-table-scroll {
  background: #fff;
  border: 1px solid #dfe3ea;
  border-radius: 20px;
  box-shadow: 0 24px 52px -42px rgba(20, 34, 58, 0.58);
  overflow-x: auto;
  overscroll-behavior-x: contain;
}
.marketing-table-scroll:focus-visible { outline: 3px solid rgba(49, 95, 220, 0.28); outline-offset: 3px; }
.marketing-comparison { border-collapse: separate; border-spacing: 0; min-width: 980px; table-layout: fixed; width: 100%; }
.marketing-comparison th,
.marketing-comparison td { border-bottom: 1px solid #e8ebf0; padding: 17px 18px; }
.marketing-comparison thead th {
  background: #fff;
  color: #1e293b;
  font-size: 13px;
  font-weight: 750;
  text-align: center;
  vertical-align: bottom;
}
.marketing-comparison thead th:first-child { text-align: left; width: 30%; }
.marketing-comparison thead span { display: block; }
.marketing-comparison thead small { color: #7a8495; display: block; font-size: 10.5px; font-weight: 550; margin-top: 5px; }
.marketing-comparison tbody th {
  background: #fff;
  color: #3a4659;
  font-size: 13px;
  font-weight: 620;
  left: 0;
  position: sticky;
  text-align: left;
  z-index: 1;
}
.marketing-comparison td { color: #6e7889; font-size: 15px; text-align: center; }
.marketing-comparison .is-featured { background: #f5f7ff; }
.marketing-comparison thead .is-featured { box-shadow: inset 0 3px 0 #5d80ee; color: #315fdc; }
.marketing-comparison .marketing-compare-group th {
  background: #eef2f8;
  color: #556177;
  font-size: 10.5px;
  font-weight: 800;
  left: auto;
  letter-spacing: 0.1em;
  padding: 11px 18px;
  position: static;
  text-transform: uppercase;
}
.compare-yes,
.compare-no { align-items: center; border-radius: 50%; display: inline-flex; font-size: 12px; font-weight: 850; height: 24px; justify-content: center; width: 24px; }
.compare-yes { background: #e9f7f0; color: #087b5b; }
.compare-no { background: #f0f2f5; color: #9aa3b1; }
.marketing-compare-actions th,
.marketing-compare-actions td { border-bottom: 0; padding-bottom: 22px; padding-top: 22px; }
.marketing-compare-actions a { color: var(--marketing-blue); font-size: 12px; font-weight: 750; text-decoration: none; }
.marketing-compare-actions a:hover { text-decoration: underline; }
.marketing-scroll-note { color: #7a8495; display: none; font-size: 11.5px; margin: 11px 3px 0; }
.marketing-addon {
  align-items: center;
  background: #fff;
  border: 1px solid #dfe3ea;
  border-radius: 18px;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin-top: 22px;
  padding: 25px 28px;
}
.marketing-addon h3 { font-size: 18px; margin: 9px 0 5px; }
.marketing-addon > div > p { color: var(--marketing-muted); font-size: 13.5px; margin: 0; }
.marketing-addon .marketing-price { flex-basis: auto; flex-shrink: 0; margin: 0; }

/* Über uns */
.marketing-principle-grid { display: grid; gap: 18px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.marketing-principle-card { background: #fff; border: 1px solid #e1e5ec; border-radius: 19px; min-height: 310px; padding: 29px; }
.marketing-principle-card > span { color: var(--marketing-blue); font: 750 11px/1 var(--ui); letter-spacing: 0.12em; }
.marketing-principle-card h3 { font-size: 22px; letter-spacing: -0.025em; line-height: 1.18; margin: 82px 0 12px; }
.marketing-principle-card p { color: var(--marketing-muted); font-size: 14.5px; line-height: 1.65; margin: 0; }
.marketing-platform-grid { display: grid; gap: 15px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.marketing-platform-grid a {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  color: inherit;
  min-height: 245px;
  padding: 27px;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.marketing-platform-grid a:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(143, 170, 255, 0.3); }
.marketing-platform-grid span { color: #8faaff; font: 750 11px/1 var(--ui); letter-spacing: 0.12em; }
.marketing-platform-grid h3 { font-size: 21px; margin: 42px 0 9px; }
.marketing-platform-grid p { color: rgba(225, 232, 245, 0.62); font-size: 14px; line-height: 1.6; margin: 0; }
.marketing-platform-grid b { color: #9fb2ff; display: inline-block; font-size: 12.5px; margin-top: 20px; }

@media (max-width: 1080px) {
  .marketing-benefit-grid--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .marketing-pricing-families { grid-template-columns: 1fr; }
  .marketing-price-card { min-height: 430px; }
}

@media (max-width: 920px) {
  .marketing-hero { padding: 78px 0 88px; }
  .marketing-hero-grid,
  .marketing-product-split,
  .marketing-product-split--reverse,
  .marketing-product-split--phone,
  .marketing-dark-grid { grid-template-columns: 1fr; }
  .marketing-hero-copy { max-width: 760px; }
  .marketing-hero-visual { margin: 0 auto; max-width: 760px; width: 100%; }
  .marketing-product-split--reverse .marketing-product-copy { order: 0; }
  .marketing-product-split .marketing-shot,
  .marketing-product-split .marketing-phone-stage { order: -1; }
  .marketing-benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .marketing-dark-grid { gap: 42px; }
  .marketing-principle-grid { grid-template-columns: 1fr; }
  .marketing-principle-card { min-height: 0; }
  .marketing-principle-card h3 { margin-top: 42px; }
  .marketing-scroll-note { display: block; }
}

@media (max-width: 700px) {
  .marketing-page .wrap { padding-left: 20px; padding-right: 20px; }
  .marketing-hero { padding: 62px 0 72px; }
  .marketing-hero h1 { font-size: clamp(40px, 12.4vw, 54px); }
  .marketing-lead { font-size: 16.5px; }
  .marketing-actions { align-items: stretch; flex-direction: column; }
  .marketing-actions .btn { width: 100%; }
  .marketing-proof { align-items: flex-start; flex-direction: column; }
  .marketing-hero-visual { padding-bottom: 20px; }
  .marketing-hero-visual::before { border-radius: 22px; inset: 8px -14px -4px 22px; }
  .marketing-shot,
  .marketing-shot--hero { border-radius: 12px; transform: none; }
  .marketing-shot-bar { min-height: 29px; padding: 6px 9px; }
  .marketing-shot-bar span { font-size: 8.5px; }
  .marketing-visual-badge { bottom: -8px; font-size: 10.5px; right: 9px; }
  .marketing-phone--overlay { max-width: 96px; right: -5px; }
  .marketing-section { padding: 78px 0; }
  .marketing-section-head { margin-bottom: 38px; }
  .marketing-section-head--center { text-align: left; }
  .marketing-section-head h2,
  .marketing-product-copy h2,
  .marketing-dark-grid h2 { font-size: clamp(32px, 10.2vw, 43px); }
  .marketing-section-head > p:last-child,
  .marketing-product-copy > p:not(.marketing-eyebrow),
  .marketing-dark-grid > div > p:not(.marketing-eyebrow) { font-size: 16px; }
  .marketing-benefit-grid,
  .marketing-benefit-grid--four,
  .marketing-code-grid,
  .marketing-platform-grid { grid-template-columns: 1fr; }
  .marketing-benefit-card { min-height: 0; }
  .marketing-phone-stage { min-height: 0; padding: 10px; }
  .marketing-phone { max-width: 235px; }
  .marketing-message-panel { padding-left: 18px; padding-right: 18px; }
  .marketing-final { padding-bottom: 78px; }
  .marketing-final-box { align-items: flex-start; flex-direction: column; min-height: 0; padding: 38px 28px; }
  .marketing-final-box .btn { width: 100%; }
  .marketing-faq { padding: 0 20px; }
  .marketing-pricing-family { padding: 14px; }
  .marketing-family-head { align-items: flex-start; }
  .marketing-price-pair { grid-template-columns: 1fr; }
  .marketing-price-card { min-height: 0; }
  .marketing-comparison { min-width: 900px; }
  .marketing-comparison thead th:first-child { width: 220px; }
  .marketing-comparison th,
  .marketing-comparison td { padding-left: 14px; padding-right: 14px; }
  .marketing-addon { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .marketing-benefit-card,
  .marketing-platform-grid a { transition: none; }
  .marketing-benefit-card:hover { transform: none; }
}

/* ── Individuelle Seitenkonzepte 2026.2 ──────────────────────────────
   Gemeinsame Brand-Basis, bewusst unterschiedliche Dramaturgie je Seite. */

/* Website: editorial, bildstark, seitlich ausbrechende Scroll-Story */
.website-page { --marketing-blue: #4652d8; --marketing-blue-soft: #eeefff; background: #f2efe9; }
.website-page .marketing-hero {
  background:
    radial-gradient(circle at 50% 110%, rgba(84, 91, 216, 0.16), transparent 40%),
    #f2efe9;
  padding: 98px 0 0;
}
.website-page .marketing-hero-grid { display: block; }
.website-page .marketing-hero-copy { margin: 0 auto; max-width: 900px; text-align: center; }
.website-page .marketing-hero h1 { font-size: clamp(52px, 7.3vw, 92px); max-width: none; }
.website-page .marketing-lead { margin-left: auto; margin-right: auto; max-width: 690px; }
.website-page .marketing-actions,
.website-page .marketing-proof { justify-content: center; }
.website-page .marketing-hero-visual {
  margin: 72px 50% 0;
  max-width: 1380px;
  padding: 22px 0 0;
  transform: translateX(-50%);
  width: calc(100vw - 72px);
}
.website-page .marketing-hero-visual::before {
  background: linear-gradient(135deg, rgba(85, 91, 214, 0.18), rgba(197, 133, 88, 0.12));
  border-radius: 36px 36px 0 0;
  inset: 0 6vw -50px;
  transform: none;
}
.website-page .marketing-shot--hero {
  border-color: rgba(29, 32, 44, 0.15);
  border-radius: 24px 24px 0 0;
  box-shadow: 0 46px 90px -50px rgba(35, 31, 29, 0.65);
  transform: none;
}
.website-page .marketing-shot--hero img { aspect-ratio: 16 / 7.5; object-fit: cover; object-position: top; }
.website-page .marketing-visual-badge { bottom: 24px; right: 38px; }
.website-canvas { background: #171817; color: #fff; min-height: 980px; overflow: hidden; padding: 132px 0; }
.website-canvas-intro { display: grid; gap: 28px; grid-template-columns: 0.6fr 1.4fr; margin-bottom: 68px; }
.website-canvas-intro h2 {
  color: #fff;
  font: 710 clamp(42px, 6vw, 76px)/0.98 var(--ui);
  letter-spacing: -0.055em;
  margin: 0;
  max-width: 850px;
}
.website-canvas .marketing-eyebrow { color: #b3b7ff; }
.website-canvas-grid { min-height: 650px; position: relative; }
.website-canvas-image { margin: 0; overflow: hidden; position: absolute; }
.website-canvas-image img { display: block; height: 100%; object-fit: cover; width: 100%; }
.website-canvas-image--large { height: 560px; left: -7vw; top: 0; width: min(72vw, 980px); }
.website-canvas-image--large img { object-position: center top; }
.website-canvas-image--small {
  border: 12px solid #f2efe9;
  bottom: -55px;
  height: 390px;
  right: -4vw;
  width: min(43vw, 590px);
}
.website-canvas-note {
  background: #fffcf6;
  bottom: -12px;
  color: #3b3a37;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  max-width: 365px;
  padding: 28px;
  position: absolute;
  right: 35%;
  z-index: 3;
}
.website-page > .marketing-section--white { background: #fffcf6; }
.website-page > .marketing-section--white:nth-of-type(3) { background: #fff; }
.website-page .marketing-benefit-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.website-page .marketing-benefit-card { background: transparent; border: 0; border-top: 1px solid #c9c5bc; border-radius: 0; padding: 28px 6px 20px; }
.website-page .marketing-benefit-card:first-child,
.website-page .marketing-benefit-card:nth-child(6) { grid-column: span 2; }
.website-page .marketing-benefit-card:hover { box-shadow: none; transform: none; }
.website-page .marketing-product-split { min-height: 660px; }
.website-page .marketing-section--soft { background: #e8e6e1; }
.website-page .marketing-section--soft .marketing-shot { width: min(62vw, 900px); }
.website-page .marketing-section--white .marketing-product-split--reverse .marketing-shot {
  margin-left: min(-8vw, -70px);
  width: min(62vw, 880px);
}
.website-page .marketing-section--dark { background: #171817; }
.website-page .marketing-final { background: #f2efe9; }

/* Buchung: lebendiger Terminfluss, tiefes Blau und bewegte Slot-Ebene */
.booking-page { --marketing-blue: #3267f3; --marketing-blue-soft: #eaf0ff; }
.booking-page .marketing-hero {
  background:
    radial-gradient(circle at 75% 25%, rgba(72, 125, 255, 0.35), transparent 30%),
    radial-gradient(circle at 10% 80%, rgba(38, 92, 225, 0.22), transparent 30%),
    #07142e;
  border-bottom: 0;
  color: #fff;
  min-height: 720px;
}
.booking-page .marketing-hero h1 { color: #fff; }
.booking-page .marketing-hero .marketing-eyebrow { color: #87a8ff; }
.booking-page .marketing-hero .marketing-lead { color: rgba(230, 237, 255, 0.7); }
.booking-page .marketing-hero .marketing-proof li { color: rgba(230, 237, 255, 0.65); }
.booking-page .marketing-hero .btn-primary { background: #fff; color: #091731; }
.booking-page .marketing-hero .btn-ghost { background: rgba(255, 255, 255, 0.07); border-color: rgba(255, 255, 255, 0.2); color: #fff; }
.booking-page .marketing-hero-grid { grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr); }
.booking-page .marketing-hero-visual::before { background: rgba(75, 126, 255, 0.14); border-color: rgba(133, 169, 255, 0.22); }
.booking-page .marketing-shot--hero { border-color: rgba(255, 255, 255, 0.2); box-shadow: 0 38px 80px -38px rgba(0, 0, 0, 0.78); transform: rotate(-1.5deg); }
.booking-live-chip {
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(198, 213, 255, 0.7);
  border-radius: 13px;
  box-shadow: 0 18px 42px -25px #020916;
  color: #39445b;
  font-size: 11.5px;
  padding: 11px 14px;
  position: absolute;
  z-index: 4;
}
.booking-live-chip b { color: #2459df; margin-right: 7px; }
.booking-live-chip--one { left: -32px; top: 4px; }
.booking-live-chip--two { right: -25px; top: 48%; }
.booking-live-chip--three { background: #dff8ed; bottom: 26px; color: #087557; left: 12%; }
.booking-flow-strip { background: #3267f3; color: #fff; }
.booking-flow-strip .wrap { align-items: center; display: flex; gap: 18px; min-height: 92px; }
.booking-flow-strip span { align-items: center; display: flex; font-size: 13px; font-weight: 700; gap: 9px; white-space: nowrap; }
.booking-flow-strip span b { color: #b9cbff; font-size: 10px; letter-spacing: 0.1em; }
.booking-flow-strip i { background: rgba(255, 255, 255, 0.32); height: 1px; width: 100%; }
.booking-page > .marketing-section--white:first-of-type { background: #eef3ff; }
.booking-page .marketing-product-split--phone { grid-template-columns: 0.8fr 1.2fr; }
.booking-page .marketing-phone-stage { background: radial-gradient(circle, rgba(50, 103, 243, 0.2), transparent 64%); }
.booking-page .marketing-section--soft { background: #eaf0ff; }
.booking-page .marketing-shot--wide { border: 8px solid #fff; box-shadow: 0 34px 68px -42px rgba(20, 53, 130, 0.62); }
.booking-page .marketing-benefit-grid--four { margin-top: -38px; padding: 0 26px; position: relative; z-index: 2; }
.booking-page .marketing-benefit-grid--four .marketing-benefit-card { border: 0; box-shadow: 0 18px 44px -36px rgba(22, 55, 131, 0.7); min-height: 170px; }
.booking-page #widgets { background: #07142e; }
.booking-page .marketing-final { background: #eaf0ff; }

/* Kommunikation: dunkle Messaging-Welt, Chatblasen und Signal-Linie */
.communication-page { --marketing-blue: #7b4bd8; --marketing-blue-soft: #f0eaff; }
.communication-page .marketing-hero {
  background:
    radial-gradient(circle at 76% 30%, rgba(153, 94, 255, 0.3), transparent 32%),
    linear-gradient(135deg, #171020, #2a153e 62%, #161020);
  border-bottom: 0;
  color: #fff;
}
.communication-page .marketing-hero h1 { color: #fff; font-size: clamp(48px, 5.6vw, 74px); }
.communication-page .marketing-hero .marketing-eyebrow { color: #c5a8ff; }
.communication-page .marketing-hero .marketing-lead { color: rgba(240, 229, 255, 0.7); }
.communication-page .marketing-hero .marketing-proof li { color: rgba(240, 229, 255, 0.65); }
.communication-page .marketing-hero .btn-primary { background: #fff; color: #27143a; }
.communication-page .marketing-hero .btn-ghost { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.2); color: #fff; }
.communication-page .marketing-hero-visual::before { background: rgba(153, 94, 255, 0.12); border-color: rgba(205, 172, 255, 0.2); transform: rotate(2deg); }
.communication-page .marketing-shot--hero { border-color: rgba(255, 255, 255, 0.16); transform: rotate(1.5deg); }
.communication-bubble {
  border-radius: 18px 18px 5px 18px;
  box-shadow: 0 18px 36px -24px #07030b;
  font-size: 12px;
  font-weight: 650;
  max-width: 220px;
  padding: 12px 15px;
  position: absolute;
  z-index: 5;
}
.communication-bubble--customer { background: #fff; color: #342841; left: -25px; top: -14px; }
.communication-bubble--salon { background: #8e5be7; border-radius: 18px 18px 18px 5px; bottom: 8px; color: #fff; right: -28px; }
.communication-signal { background: #0e0914; color: #fff; }
.communication-signal-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.communication-signal span { align-items: center; border-left: 1px solid rgba(255, 255, 255, 0.09); display: flex; font-size: 13px; font-weight: 700; gap: 11px; min-height: 86px; padding: 0 25px; }
.communication-signal span:last-child { border-right: 1px solid rgba(255, 255, 255, 0.09); }
.communication-signal i { background: #a56cf3; border-radius: 50%; box-shadow: 0 0 0 5px rgba(165, 108, 243, 0.13); height: 7px; width: 7px; }
.communication-page > .marketing-section--white:first-of-type { background: #faf7ff; }
.communication-page .marketing-benefit-grid--four { gap: 0; }
.communication-page .marketing-benefit-grid--four .marketing-benefit-card {
  border-color: #e2d8ef;
  border-radius: 0;
  border-width: 1px 0 0 1px;
  min-height: 250px;
  padding: 32px;
}
.communication-page .marketing-benefit-grid--four .marketing-benefit-card:last-child { border-right-width: 1px; }
.communication-page .marketing-section--soft { background: #eee8f4; }
.communication-page .marketing-section--dark { background: #241334; }
.communication-page .marketing-message-panel { transform: rotate(-1.2deg); }
.communication-page .marketing-pill-list span { background: #f6f0ff; border-color: #e4d9f2; color: #5d4279; }
.communication-page .marketing-final { background: #f4eff8; }

/* Kundenverwaltung: datenreiches Profil, Mint und modulare Bento-Karten */
.crm-page { --marketing-blue: #0e7d70; --marketing-blue-soft: #e4f5f1; }
.crm-page .marketing-hero {
  background:
    linear-gradient(90deg, rgba(224, 244, 238, 0.96), rgba(241, 248, 246, 0.92)),
    #e8f5f1;
  border-bottom: 0;
}
.crm-page .marketing-eyebrow { color: #08766a; }
.crm-page .marketing-hero-grid { grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr); }
.crm-page .marketing-hero-visual::before { background: rgba(14, 125, 112, 0.09); border-color: rgba(14, 125, 112, 0.15); }
.crm-page .marketing-shot--hero { border-color: rgba(14, 90, 80, 0.18); box-shadow: 0 35px 70px -42px rgba(8, 66, 59, 0.6); transform: none; }
.crm-record-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #cfe4df;
  border-radius: 14px;
  box-shadow: 0 18px 38px -28px rgba(8, 66, 59, 0.7);
  display: grid;
  gap: 3px;
  padding: 13px 15px;
  position: absolute;
  width: 180px;
  z-index: 5;
}
.crm-record-card small { color: #7b8d89; font-size: 9px; font-weight: 750; letter-spacing: 0.08em; text-transform: uppercase; }
.crm-record-card strong { color: #173833; font-size: 12.5px; }
.crm-record-card span { color: #6b817c; font-size: 10.5px; }
.crm-record-card--one { left: -34px; top: 5px; }
.crm-record-card--two { bottom: -8px; right: -25px; }
.crm-index { background: #0b5048; color: #fff; }
.crm-index-grid { display: grid; grid-template-columns: repeat(6, 1fr); }
.crm-index span { border-left: 1px solid rgba(255, 255, 255, 0.1); font-size: 11px; font-weight: 700; letter-spacing: 0.05em; padding: 28px 18px; text-align: center; text-transform: uppercase; }
.crm-index span:last-child { border-right: 1px solid rgba(255, 255, 255, 0.1); }
.crm-page .marketing-benefit-grid { grid-template-columns: repeat(4, 1fr); }
.crm-page .marketing-benefit-card { background: #f8fcfb; border-color: #dbeae6; }
.crm-page .marketing-benefit-card:first-child,
.crm-page .marketing-benefit-card:nth-child(4) { grid-column: span 2; }
.crm-page .marketing-benefit-card:first-child { background: #0f776c; }
.crm-page .marketing-benefit-card:first-child h3,
.crm-page .marketing-benefit-card:first-child p { color: #fff; }
.crm-page .marketing-benefit-card:first-child .marketing-icon { background: rgba(255, 255, 255, 0.14); color: #c7fff4; }
.crm-page .marketing-section--soft { background: #e8f4f1; }
.crm-page .marketing-section--dark { background: #083d38; }
.crm-page .marketing-final { background: #e8f4f1; }

/* Preise: dunkler Entscheidungsraum statt weiterer Produkt-Landingpage */
.pricing-page { --marketing-blue: #4f73f1; --marketing-blue-soft: #edf1ff; background: #f4f3ef; }
.pricing-page .marketing-hero--centered {
  background:
    radial-gradient(circle at 50% 110%, rgba(81, 117, 241, 0.3), transparent 42%),
    #0b1120;
  border-bottom: 0;
  color: #fff;
  min-height: 620px;
  padding: 104px 0 86px;
}
.pricing-page .marketing-hero h1 { color: #fff; font-size: clamp(54px, 7vw, 88px); }
.pricing-page .marketing-hero .marketing-lead { color: rgba(226, 233, 248, 0.68); }
.pricing-page .marketing-hero .marketing-eyebrow { color: #92aaff; }
.pricing-page .marketing-hero .marketing-proof li { color: rgba(226, 233, 248, 0.65); }
.pricing-decision {
  align-items: stretch;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  margin: 34px auto 0;
  max-width: 760px;
}
.pricing-decision > span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  display: grid;
  gap: 6px;
  padding: 17px 18px;
  text-align: left;
}
.pricing-decision small { color: rgba(226, 233, 248, 0.55); font-size: 10px; }
.pricing-decision strong { color: #fff; font-size: 15px; }
.pricing-decision > i { align-self: center; color: #7488c5; font-style: normal; }
.pricing-page .marketing-pricing-summary { background: #f4f3ef; }
.pricing-page .marketing-pricing-family { background: transparent; border: 0; border-radius: 0; padding: 0; }
.pricing-page .marketing-family-head { border-bottom: 1px solid #cfcdc6; margin-bottom: 18px; padding: 0 0 20px; }
.pricing-page .marketing-price-card { border-radius: 8px; box-shadow: 0 18px 38px -35px rgba(24, 30, 45, 0.5); }
.pricing-page .marketing-price-card--featured { border-radius: 8px; }
.pricing-page #vergleich { background: #fff; }
.pricing-page .marketing-table-scroll { border-radius: 8px; box-shadow: none; }
.pricing-page .marketing-addon { border-radius: 8px; }
.pricing-page .marketing-final { background: #f4f3ef; }

/* Über uns: warmes Editorial, Manifest und reduzierte Prinzipien */
.about-page { --marketing-blue: #c15c36; --marketing-blue-soft: #f9e9e1; background: #f3eee6; }
.about-page .about-hero {
  background:
    radial-gradient(circle at 84% 18%, rgba(196, 103, 66, 0.17), transparent 30%),
    #f3eee6;
  border-bottom: 0;
  min-height: 760px;
}
.about-page .marketing-eyebrow { color: #b45330; }
.about-page .marketing-hero-grid { align-items: end; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); }
.about-page .marketing-hero h1 { font-size: clamp(58px, 7.5vw, 96px); line-height: 0.92; }
.about-page .marketing-hero-visual { padding-bottom: 0; }
.about-page .marketing-hero-visual::before { background: rgba(193, 92, 54, 0.08); border-color: rgba(193, 92, 54, 0.13); inset: -35px -55px 35px 35px; }
.about-page .marketing-shot--hero { border-radius: 0; filter: grayscale(0.68) sepia(0.08); transform: rotate(2deg); }
.about-page .marketing-visual-badge { background: #1e1d1b; border-color: #1e1d1b; color: #fff; }
.about-manifesto { background: #1e1d1b; color: #fff; padding: 105px 0; }
.about-manifesto-grid { align-items: end; display: grid; gap: 80px; grid-template-columns: 1.4fr 0.6fr; }
.about-manifesto p {
  font: 680 clamp(42px, 6.3vw, 78px)/1.02 var(--ui);
  letter-spacing: -0.055em;
  margin: 0;
}
.about-manifesto-grid > div { display: grid; gap: 10px; }
.about-manifesto span { border-bottom: 1px solid rgba(255, 255, 255, 0.18); color: #c7c2ba; font-size: 12px; font-weight: 700; padding: 11px 0; text-transform: uppercase; }
.about-page > .marketing-section--white { background: #fffdf9; }
.about-page .marketing-principle-grid { gap: 0; }
.about-page .marketing-principle-card {
  background: transparent;
  border: 0;
  border-left: 1px solid #d7cec2;
  border-radius: 0;
  min-height: 380px;
  padding: 20px 34px 30px;
}
.about-page .marketing-principle-card:last-child { border-right: 1px solid #d7cec2; }
.about-page .marketing-principle-card h3 { margin-top: 118px; }
.about-page .marketing-section--soft { background: #eee6dc; }
.about-page .marketing-section--dark { background: #1e1d1b; }
.about-page .marketing-platform-grid a { border-radius: 0; }
.about-page .marketing-final { background: #f3eee6; }
.about-page .marketing-final-box { background: #b95532; border-color: #b95532; }

@media (min-width: 921px) {
  .website-page .marketing-section--soft .marketing-shot,
  .website-page .marketing-section--white .marketing-product-split--reverse .marketing-shot {
    position: sticky;
    top: 105px;
  }
}

@media (max-width: 1080px) {
  .website-page .marketing-benefit-grid,
  .crm-page .marketing-benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .website-canvas-image--large { left: 0; width: 74%; }
  .website-canvas-image--small { right: 0; width: 44%; }
  .communication-bubble--customer { left: 0; }
  .communication-bubble--salon { right: 0; }
}

@media (max-width: 920px) {
  .website-page .marketing-hero-visual { width: calc(100vw - 40px); }
  .website-page .marketing-benefit-card:first-child,
  .website-page .marketing-benefit-card:nth-child(6),
  .crm-page .marketing-benefit-card:first-child,
  .crm-page .marketing-benefit-card:nth-child(4) { grid-column: span 1; }
  .website-page .marketing-section--soft .marketing-shot,
  .website-page .marketing-section--white .marketing-product-split--reverse .marketing-shot { margin-left: 0; width: 100%; }
  .booking-page .marketing-hero-grid,
  .crm-page .marketing-hero-grid,
  .about-page .marketing-hero-grid { grid-template-columns: 1fr; }
  .booking-page .marketing-product-split--phone { grid-template-columns: 1fr; }
  .booking-live-chip--one { left: 8px; }
  .booking-live-chip--two { right: 8px; }
  .crm-record-card--one { left: 5px; }
  .crm-record-card--two { right: 5px; }
  .about-page .marketing-hero-copy { max-width: 800px; }
  .about-page .marketing-hero-visual { max-width: 650px; }
  .about-manifesto-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .website-page .marketing-hero { padding-top: 62px; }
  .website-page .marketing-hero-copy { text-align: left; }
  .website-page .marketing-actions,
  .website-page .marketing-proof { justify-content: flex-start; }
  .website-page .marketing-hero-visual { margin-top: 45px; width: calc(100vw - 24px); }
  .website-page .marketing-shot--hero { border-radius: 14px 14px 0 0; }
  .website-page .marketing-shot--hero img { aspect-ratio: 16 / 10; }
  .website-page .marketing-visual-badge { bottom: 8px; right: 12px; }
  .website-canvas { min-height: 0; padding: 78px 0; }
  .website-canvas-intro { grid-template-columns: 1fr; margin-bottom: 38px; }
  .website-canvas-intro h2 { font-size: 43px; }
  .website-canvas-grid { display: grid; gap: 16px; min-height: 0; }
  .website-canvas-image { height: auto; position: static; width: 100%; }
  .website-canvas-image img { aspect-ratio: 4 / 3; }
  .website-canvas-image--small { border: 7px solid #f2efe9; margin-left: 18%; width: 82%; }
  .website-canvas-note { margin-top: -44px; max-width: 88%; position: relative; right: auto; }
  .website-page .marketing-benefit-grid,
  .crm-page .marketing-benefit-grid { grid-template-columns: 1fr; }
  .website-page .marketing-product-split { min-height: 0; }

  .booking-page .marketing-hero { min-height: 0; }
  .booking-live-chip { display: none; }
  .booking-flow-strip .wrap { gap: 8px; overflow-x: auto; }
  .booking-flow-strip span { font-size: 11px; }
  .booking-flow-strip i { min-width: 18px; }
  .booking-page .marketing-benefit-grid--four { margin-top: 22px; padding: 0; }

  .communication-bubble { font-size: 10px; max-width: 165px; padding: 9px 11px; }
  .communication-page .marketing-hero h1 { font-size: clamp(26px, 8.2vw, 42px); }
  .communication-bubble--customer { top: 2px; }
  .communication-bubble--salon { bottom: 0; }
  .communication-signal-grid { grid-template-columns: repeat(2, 1fr); }
  .communication-signal span:nth-child(3) { border-top: 1px solid rgba(255, 255, 255, 0.09); }
  .communication-signal span:nth-child(4) { border-top: 1px solid rgba(255, 255, 255, 0.09); border-right: 1px solid rgba(255, 255, 255, 0.09); }
  .communication-page .marketing-benefit-grid--four .marketing-benefit-card { border-right-width: 1px; }

  .crm-record-card { padding: 9px 10px; width: 135px; }
  .crm-record-card strong { font-size: 10.5px; }
  .crm-record-card--one { top: -4px; }
  .crm-index-grid { grid-template-columns: repeat(3, 1fr); }
  .crm-index span { border-bottom: 1px solid rgba(255, 255, 255, 0.1); font-size: 9px; padding: 20px 8px; }

  .pricing-page .marketing-hero--centered { min-height: 0; padding-top: 72px; }
  .pricing-decision { gap: 7px; grid-template-columns: 1fr; }
  .pricing-decision > i { display: none; }
  .pricing-decision > span { text-align: center; }

  .about-page .about-hero { min-height: 0; }
  .about-page .marketing-shot--hero { transform: none; }
  .about-manifesto { padding: 78px 0; }
  .about-manifesto p { font-size: 43px; }
  .about-page .marketing-principle-card,
  .about-page .marketing-principle-card:last-child { border: 0; border-top: 1px solid #d7cec2; min-height: 0; padding: 25px 0 34px; }
  .about-page .marketing-principle-card h3 { margin-top: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  .website-page .marketing-section--soft .marketing-shot,
  .website-page .marketing-section--white .marketing-product-split--reverse .marketing-shot { position: static; }
}

/* ── Go-live Navigation + Seitenkonzepte 2026.3 ─────────────────────── */
.site-header { z-index: 100; }
.site-header .nav-panel {
  align-items: center;
  display: flex;
  gap: 25px;
  margin-left: auto;
}
.nav-direct,
.nav-product-trigger {
  color: var(--ink-2);
  font: 650 14px/1 var(--ui);
  text-decoration: none;
}
.nav-direct { padding: 25px 0 23px; }
.nav-direct:hover,
.nav-direct:focus-visible,
.nav-direct.active { color: var(--ink); }
.nav-direct.active { box-shadow: inset 0 -2px var(--accent); }
.nav-product { align-items: center; display: flex; height: 64px; position: relative; }
.nav-product-trigger {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  gap: 6px;
  padding: 20px 0;
}
.nav-product-trigger svg { transition: transform 180ms ease; }
.nav-product.active .nav-product-trigger,
.nav-product-trigger:hover,
.nav-product-trigger:focus-visible { color: var(--ink); }
.nav-product.active .nav-product-trigger { box-shadow: inset 0 -2px var(--accent); }
.nav-mega {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #e4e2dc;
  border-radius: 18px;
  box-shadow: 0 30px 70px -30px rgba(29, 31, 38, 0.42);
  left: -88px;
  opacity: 0;
  padding: 18px;
  pointer-events: none;
  position: absolute;
  top: 57px;
  transform: translateY(-8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
  visibility: hidden;
  width: min(610px, calc(100vw - 40px));
}
.nav-product:hover .nav-mega,
.nav-product.open .nav-mega { opacity: 1; pointer-events: auto; transform: translateY(0); visibility: visible; }
.site-header .nav-product.escape-closed .nav-mega { opacity: 0; pointer-events: none; transform: translateY(-8px); visibility: hidden; }
.nav-product:hover .nav-product-trigger svg,
.nav-product.open .nav-product-trigger svg { transform: rotate(180deg); }
.nav-mega-label {
  color: #8a8984;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.11em;
  margin: 0 0 10px 7px;
  text-transform: uppercase;
}
.nav-mega-grid { display: grid; gap: 5px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.nav-mega-grid a {
  align-items: flex-start;
  border-radius: 12px;
  color: #3a3b3f;
  display: flex;
  gap: 12px;
  padding: 13px;
  text-decoration: none;
}
.nav-mega-grid a:hover,
.nav-mega-grid a:focus-visible,
.nav-mega-grid a.active { background: #f3f2ee; color: #1d1e21; }
.nav-mega-icon {
  align-items: center;
  background: #24262b;
  border-radius: 8px;
  color: #fff;
  display: flex;
  flex: 0 0 31px;
  font-size: 11px;
  font-weight: 800;
  height: 31px;
  justify-content: center;
}
.nav-mega-grid strong { display: block; font-size: 13.5px; margin: 1px 0 5px; }
.nav-mega-grid small { color: #777873; display: block; font-size: 11px; font-weight: 500; line-height: 1.4; }
.nav-mobile-secondary,
.nav-backdrop,
.nav-burger-close { display: none; }
body.nav-lock { overflow: hidden; }

/* Website: moderne Designbühne statt Produkt-Screenshot. */
.website-page { background: #f2efe8; overflow: clip; }
.website-hero { background: #f2efe8; padding: clamp(82px, 10vw, 145px) 0 58px; }
.website-hero-grid { align-items: end; display: grid; gap: clamp(35px, 7vw, 110px); grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr); }
.website-hero h1 {
  color: #171816;
  font: 720 clamp(58px, 7.5vw, 112px)/0.88 var(--ui);
  letter-spacing: -0.074em;
  margin: 18px 0 0;
  max-width: 950px;
}
.website-hero-aside { padding-bottom: 5px; }
.website-hero-aside > p { color: #5d5b55; font-size: clamp(17px, 1.5vw, 21px); line-height: 1.62; margin: 0; }
.website-hero-aside .marketing-actions { margin-top: 30px; }
.website-hero-marquee {
  border-bottom: 1px solid #ccc7bc;
  border-top: 1px solid #ccc7bc;
  display: flex;
  gap: 0;
  margin-top: 76px;
  overflow: hidden;
}
.website-hero-marquee span {
  color: #79766e;
  flex: 1;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.13em;
  min-width: 230px;
  padding: 18px 5vw;
  text-align: center;
  text-transform: uppercase;
}
.website-hero-marquee span + span { border-left: 1px solid #ccc7bc; }
.website-designs { background: #111210; color: #fff; padding: clamp(88px, 10vw, 150px) 0; }
/* Folgt die Demoshop-Galerie, tragen beide Sektionen den Abstand gemeinsam —
   sonst klafft zwischen Bühne und Galerie eine doppelte Lücke. */
.website-designs:has(+ .website-demos) { padding-bottom: clamp(18px, 2vw, 32px); }
.website-designs-head { display: grid; gap: 25px; grid-template-columns: 0.45fr 1.05fr 0.6fr; margin-bottom: 74px; }
.website-designs-head .marketing-eyebrow { color: #aaaef8; }
.website-designs-head h2 { color: #fff; font: 710 clamp(45px, 5vw, 76px)/0.96 var(--ui); letter-spacing: -0.055em; margin: 0; }
.website-designs-head > p:last-child { color: #9e9f99; font-size: 16px; line-height: 1.7; margin: 4px 0 0; }
.design-stage { align-items: start; display: grid; gap: clamp(40px, 6vw, 90px); grid-template-columns: minmax(250px, 0.34fr) minmax(0, 0.66fr); }
.design-controls { display: grid; }
.design-control {
  background: transparent;
  border: 0;
  border-top: 1px solid #33342f;
  color: #777972;
  cursor: pointer;
  display: grid;
  grid-template-columns: 35px 1fr;
  min-height: 119px;
  padding: 24px 0;
  text-align: left;
  transition: color 180ms ease, padding-left 180ms ease;
}
.design-control:last-child { border-bottom: 1px solid #33342f; }
.design-control > span { font-size: 10px; letter-spacing: 0.1em; padding-top: 7px; }
.design-control strong { color: inherit; font: 650 clamp(24px, 2.5vw, 38px)/1 var(--ui); letter-spacing: -0.04em; }
.design-control small { font-size: 11px; grid-column: 2; letter-spacing: 0.04em; margin-top: 7px; }
.design-control.active,
.design-control:hover,
.design-control:focus-visible { color: #fff; padding-left: 10px; }
.design-control.active > span { color: #aeb3ff; }
.design-viewport {
  aspect-ratio: 16 / 10;
  background: #eae7df;
  border: 1px solid #373832;
  border-radius: 18px;
  box-shadow: 0 48px 100px -42px rgba(0, 0, 0, 0.8);
  overflow: hidden;
  position: sticky;
  top: 94px;
}
.design-browser-bar { align-items: center; background: #e8e6e0; color: #76756f; display: flex; gap: 6px; height: 37px; padding: 0 14px; position: relative; z-index: 8; }
.design-browser-bar i { background: #b5b2aa; border-radius: 50%; height: 6px; width: 6px; }
.design-browser-bar span { font-size: 9px; left: 50%; position: absolute; transform: translateX(-50%); }
.design-frame { inset: 37px 0 0; margin: 0; opacity: 0; overflow: hidden; position: absolute; transform: scale(1.035); transition: opacity 420ms ease, transform 700ms cubic-bezier(.2,.8,.2,1); }
.design-frame::after { background: linear-gradient(120deg, rgba(255,255,255,.12), transparent 35%); content: ''; inset: 0; pointer-events: none; position: absolute; }
.design-frame.active { opacity: 1; transform: scale(1); z-index: 2; }
.design-frame img { display: block; height: 100%; object-fit: cover; object-position: top; width: 100%; }
.design-frame a { display: block; height: 100%; position: relative; }
.design-frame-cta {
  backdrop-filter: blur(6px);
  background: rgba(18, 19, 16, 0.82);
  border-radius: 999px;
  bottom: 22px;
  color: #fff;
  font: 600 12px/1 var(--ui);
  left: 50%;
  letter-spacing: 0.04em;
  opacity: 0;
  padding: 12px 20px;
  position: absolute;
  transform: translate(-50%, 8px);
  transition: opacity 260ms ease, transform 260ms ease;
  white-space: nowrap;
  z-index: 4;
}
.design-frame.active a:hover .design-frame-cta,
.design-frame.active a:focus-visible .design-frame-cta { opacity: 1; transform: translate(-50%, 0); }
.design-mobile-rail { display: none; }

/* ── Demoshop-Galerie ─────────────────────────────────────────────────── */
/* Schließt direkt an die dunkle Design-Bühne an und teilt deren Hintergrund,
   damit Bühne und Galerie als ein Block gelesen werden. */
.website-demos { background: #111210; color: #fff; padding: clamp(70px, 8vw, 118px) 0 clamp(88px, 10vw, 150px); }
.website-demos-head { max-width: 760px; }
.website-demos-head .marketing-eyebrow { color: #aaaef8; }
.website-demos-head h2 { color: #fff; font: 700 clamp(38px, 4.6vw, 62px)/1.02 var(--ui); letter-spacing: -0.05em; margin: 0 0 18px; }
.website-demos-head > p:last-child { color: #9b9d95; max-width: 620px; }
.website-demos-grid {
  display: grid;
  gap: 26px 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(38px, 4vw, 58px);
}
.demo-card { display: flex; flex-direction: column; gap: 10px; }
.demo-card-shot {
  background: #22231f;
  border: 1px solid #34352f;
  border-radius: 14px;
  display: block;
  overflow: hidden;
}
.demo-card-shot img {
  aspect-ratio: 16 / 10;
  display: block;
  height: auto;
  object-fit: cover;
  object-position: top;
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
  width: 100%;
}
.demo-card-shot:hover img,
.demo-card-shot:focus-visible img { transform: scale(1.035); }
.demo-card-meta {
  color: #8e9089;
  display: flex;
  font-size: 11px;
  gap: 10px;
  letter-spacing: 0.08em;
  margin: 6px 0 0;
  text-transform: uppercase;
}
.demo-card-meta span + span { border-left: 1px solid #3a3b35; padding-left: 10px; }
.demo-card h3 { color: #fff; font: 650 22px/1.15 var(--ui); letter-spacing: -0.03em; margin: 0; }
.demo-card-text { color: #9b9d95; font-size: 14px; margin: 0; }
.demo-card-links { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 4px 0 0; }
.demo-card-links a {
  border-bottom: 1px solid #4a4b44;
  color: #d7d8d2;
  font-size: 13px;
  padding-bottom: 2px;
  transition: border-color 200ms ease, color 200ms ease;
}
.demo-card-links a:hover,
.demo-card-links a:focus-visible { border-color: #aeb3ff; color: #fff; }
.website-demos-note {
  border-top: 1px solid #2f302a;
  color: #8e9089;
  font-size: 14px;
  margin: clamp(38px, 4vw, 56px) 0 0;
  padding-top: 22px;
}
.website-demos-note a { border-bottom: 1px solid #4a4b44; color: #d7d8d2; }
.website-demos-note a:hover { border-color: #aeb3ff; color: #fff; }
@media (max-width: 980px) { .website-demos-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .website-demos-grid { grid-template-columns: 1fr; } }
.website-more { background: #f2efe8; padding: clamp(85px, 10vw, 145px) 0; }
.website-more-head { align-items: end; display: flex; justify-content: space-between; margin-bottom: 50px; }
.website-more-head h2 { font: 700 clamp(42px, 5vw, 68px)/1 var(--ui); letter-spacing: -0.05em; margin: 0; }
.website-more-grid { display: grid; gap: 18px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.website-more-grid figure { background: #fff; margin: 0; overflow: hidden; }
.website-more-grid img { aspect-ratio: 4 / 3; display: block; height: auto; object-fit: cover; object-position: top; transition: transform 600ms cubic-bezier(.2,.8,.2,1); width: 100%; }
.website-more-grid figure:hover img { transform: scale(1.025); }
.website-more-grid figcaption { align-items: center; display: flex; justify-content: space-between; padding: 18px 20px 21px; }
.website-more-grid strong { font-size: 17px; }
.website-more-grid span { color: #77756f; font-size: 11px; }
.website-tools { background: #fff; padding: clamp(85px, 9vw, 135px) 0; }
.website-tool-grid { display: grid; gap: 20px; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 55px; }
.website-tool-grid article { border-top: 1px solid #d6d4ce; padding-top: 18px; }
.website-tool-shot { aspect-ratio: 4 / 3; background: #efeee9; margin-bottom: 24px; overflow: hidden; }
.website-tool-shot img { display: block; height: 100%; object-fit: cover; object-position: top; width: 100%; }
.website-tool-grid article:last-child img { object-fit: contain; }
.website-tool-grid article > span { color: #777bde; font-size: 10px; font-weight: 750; letter-spacing: .12em; }
.website-tool-grid h3 { font-size: 24px; letter-spacing: -.035em; margin: 12px 0 10px; }
.website-tool-grid p { color: #6d6d68; line-height: 1.65; margin: 0; }
.website-final { background: #f2efe8; }

/* Kundenbindung: warme Customer-Journey statt Produktbegriff. */
.retention-page { --marketing-blue: #a9445f; --marketing-blue-soft: #f9e8ea; background: #fbf5f1; }
.retention-hero { background: radial-gradient(circle at 88% 8%, rgba(255, 191, 173, .34), transparent 30%), #f8e9e4; padding: clamp(78px, 9vw, 130px) 0 clamp(76px, 8vw, 115px); }
.retention-hero-grid { align-items: center; display: grid; gap: clamp(50px, 8vw, 120px); grid-template-columns: minmax(0, .87fr) minmax(420px, 1.13fr); }
.retention-hero .marketing-eyebrow { color: #a53f59; }
.retention-hero h1 { color: #351c26; font: 720 clamp(55px, 6.2vw, 88px)/.92 var(--ui); letter-spacing: -.065em; margin: 18px 0 28px; }
.retention-hero .marketing-lead { color: #735761; font-size: 19px; max-width: 580px; }
.retention-hero .btn-primary { background: #9f3855; }
.retention-journey { display: grid; gap: 13px; position: relative; }
.retention-path { background: linear-gradient(#c25f76, #e3a15e); bottom: 53px; left: 25px; position: absolute; top: 53px; width: 2px; }
.retention-journey article { align-items: center; backdrop-filter: blur(12px); background: rgba(255,255,255,.73); border: 1px solid rgba(164, 91, 105, .16); border-radius: 17px; box-shadow: 0 18px 45px -35px #814158; display: grid; gap: 17px; grid-template-columns: 51px 1fr; min-height: 93px; padding: 14px 20px 14px 0; position: relative; }
.retention-journey article:nth-of-type(2) { margin-left: 7%; }
.retention-journey article:nth-of-type(3) { margin-left: 13%; }
.retention-journey article:nth-of-type(4) { margin-left: 5%; }
.retention-journey article > span { align-items: center; background: #9f3855; border: 5px solid #f8e9e4; border-radius: 50%; color: #fff; display: flex; font-size: 9px; height: 42px; justify-content: center; margin-left: 5px; position: relative; width: 42px; z-index: 2; }
.retention-journey article div { display: grid; grid-template-columns: 1fr auto; }
.retention-journey small { color: #a17d87; font-size: 9px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.retention-journey strong { color: #462833; font-size: 18px; grid-column: 1; margin-top: 4px; }
.retention-journey p { color: #8b6b74; font-size: 11px; grid-column: 2; grid-row: 1 / span 2; margin: auto 0; }
.retention-outcomes { background: #fff; padding: clamp(90px, 10vw, 145px) 0; }
.retention-card-grid { display: grid; gap: 0; grid-template-columns: repeat(2, 1fr); margin-top: 56px; }
.retention-card-grid article { border-left: 1px solid #e0d6d2; border-top: 1px solid #e0d6d2; min-height: 290px; padding: 34px clamp(25px, 4vw, 54px); }
.retention-card-grid article:nth-child(2n) { border-right: 1px solid #e0d6d2; }
.retention-card-grid article:nth-last-child(-n+2) { border-bottom: 1px solid #e0d6d2; }
.retention-card-number { color: #b54b68; font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.retention-card-grid h3 { color: #3b2730; font-size: clamp(25px, 2.5vw, 34px); letter-spacing: -.045em; margin: 37px 0 14px; }
.retention-card-grid p { color: #76646a; line-height: 1.65; margin: 0 0 24px; max-width: 510px; }
.retention-card-grid strong { color: #a23b58; font-size: 11px; }
.retention-inbox { background: #f3e4e2; padding: clamp(90px, 10vw, 145px) 0; }
.retention-inbox .marketing-shot { border-color: rgba(118, 59, 73, .18); box-shadow: 0 40px 75px -45px #6d3445; transform: rotate(1deg); }
.retention-campaigns { background: #351923; color: #fff; padding: clamp(90px, 10vw, 145px) 0; }
.retention-campaigns-grid { align-items: center; display: grid; gap: clamp(55px, 10vw, 145px); grid-template-columns: 1fr 1fr; }
.retention-campaigns h2 { color: #fff; font: 700 clamp(43px, 5vw, 70px)/.98 var(--ui); letter-spacing: -.055em; margin: 18px 0 22px; }
.retention-campaigns p { color: #ccb8bf; font-size: 17px; line-height: 1.7; }
.retention-campaigns .marketing-eyebrow { color: #f1a4b6; }
.retention-campaign-card { background: #fff8f4; border-radius: 22px; box-shadow: 0 35px 80px -45px #11060a; color: #432630; overflow: hidden; padding: 12px 28px 26px; transform: rotate(-1deg); }
.retention-campaign-card div { border-bottom: 1px solid #e7d9d5; display: grid; gap: 7px; padding: 20px 0; }
.retention-campaign-card small { color: #a47e88; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.retention-campaign-card strong { font-size: 15px; }
.retention-campaign-card > span { background: #e8b66e; border-radius: 999px; color: #4a3010; display: inline-block; font-size: 10px; font-weight: 800; margin-top: 22px; padding: 8px 11px; }
.retention-final { background: #f8e9e4; }
.retention-final .marketing-final-box { background: #9f3855; border-color: #9f3855; }

@media (max-width: 860px) {
  html,
  body { max-width: 100%; overflow-x: clip; }
  .site-header .nav { height: 64px; }
  .site-header .nav-burger { display: inline-flex; position: relative; z-index: 104; }
  .site-header.nav-open .nav-burger-open { display: none; }
  .site-header.nav-open .nav-burger-close { display: block; }
  .site-header .nav-panel {
    align-items: stretch;
    background: #fff;
    bottom: 0;
    box-shadow: -24px 0 70px -35px rgba(20, 22, 28, .5);
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    overflow-y: auto;
    padding: 86px 22px 28px;
    position: fixed;
    right: 0;
    top: 0;
    clip-path: inset(0 0 0 100%);
    opacity: 0;
    pointer-events: none;
    transform: none;
    transition: clip-path 240ms cubic-bezier(.3,.8,.3,1), opacity 180ms ease, visibility 240ms;
    visibility: hidden;
    width: min(420px, 92vw);
    z-index: 103;
  }
  .site-header.nav-open .nav-panel { clip-path: inset(0); opacity: 1; pointer-events: auto; visibility: visible; }
  .site-header .nav-backdrop {
    background: rgba(18, 20, 23, .42);
    border: 0;
    display: block;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    transition: opacity 220ms ease;
    z-index: 102;
  }
  .site-header.nav-open .nav-backdrop { opacity: 1; pointer-events: auto; }
  .nav-product { align-items: stretch; display: block; height: auto; }
  .nav-product-trigger,
  .nav-direct {
    border-bottom: 1px solid #e7e5df;
    box-shadow: none !important;
    color: #27292e;
    font-size: 17px;
    justify-content: space-between;
    padding: 18px 2px;
    width: 100%;
  }
  .nav-product-trigger svg { height: 17px; width: 17px; }
  .nav-mega {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    left: auto;
    max-height: 0;
    opacity: 1;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: static;
    transform: none;
    transition: max-height 260ms ease, padding 260ms ease;
    visibility: visible;
    width: auto;
  }
  .nav-product:hover .nav-mega,
  .nav-product:focus-within .nav-mega { max-height: 0; padding: 0; pointer-events: none; }
  .nav-product.open .nav-mega { max-height: 470px; padding: 12px 0 15px; pointer-events: auto; }
  .nav-product:hover .nav-product-trigger svg,
  .nav-product:focus-within .nav-product-trigger svg { transform: none; }
  .nav-product.open .nav-product-trigger svg { transform: rotate(180deg); }
  .nav-mega-label { margin-left: 11px; }
  .nav-mega-grid { grid-template-columns: 1fr; }
  .nav-mega-grid a { padding: 10px; }
  .nav-mega-grid small { font-size: 11.5px; }
  .site-header .nav-cta { background: #315ee7; color: #fff; font-size: 14px; margin: 23px 0 9px; min-height: 48px; padding: 15px 18px; text-align: center; }
  .site-header .nav-cta:hover { background: #244cc9; color: #fff; }
  .nav-mobile-secondary { color: #767873; display: block; font-size: 13px; padding: 13px 2px; text-align: center; text-decoration: none; }

  .website-hero-grid,
  .website-designs-head,
  .retention-hero-grid,
  .retention-campaigns-grid { grid-template-columns: 1fr; }
  .website-hero-aside { max-width: 630px; }
  .website-designs-head { gap: 18px; }
  .design-stage { display: none; }
  .design-mobile-rail {
    display: grid;
    gap: 16px;
    grid-auto-columns: min(83vw, 620px);
    grid-auto-flow: column;
    margin-top: 45px;
    overflow-x: auto;
    padding: 0 max(20px, calc((100vw - 1180px) / 2)) 22px;
    scroll-padding-inline: 20px;
    scroll-snap-type: x mandatory;
  }
  .design-mobile-rail figure { background: #22231f; border: 1px solid #353630; border-radius: 14px; margin: 0; overflow: hidden; scroll-snap-align: center; }
  .design-mobile-rail figure > a { color: inherit; display: block; }
  .design-mobile-rail img { aspect-ratio: 4 / 3; display: block; height: auto; object-fit: cover; object-position: top; width: 100%; }
  .design-mobile-rail figcaption { display: grid; gap: 4px; padding: 16px; }
  .design-mobile-rail strong { color: #fff; }
  .design-mobile-rail span { color: #8e9089; font-size: 11px; }
  .retention-hero-grid { grid-template-columns: 1fr; }
  .retention-journey { margin: 0 auto; max-width: 640px; width: 100%; }
}

@media (max-width: 680px) {
  .website-hero { padding-top: 68px; }
  .website-hero h1 { font-size: clamp(51px, 16vw, 76px); }
  .website-hero-marquee { margin-top: 48px; overflow-x: auto; }
  .website-hero-marquee span { flex: 0 0 auto; }
  .website-more-head { align-items: flex-start; display: grid; gap: 13px; }
  .website-more-grid,
  .website-tool-grid { grid-template-columns: 1fr; }
  .website-more-grid { gap: 14px; }
  .website-tool-grid { gap: 45px; }
  .retention-hero h1 { font-size: clamp(50px, 15vw, 70px); }
  .retention-journey article,
  .retention-journey article:nth-of-type(n) { margin-left: 0; }
  .retention-journey p { display: none; }
  .retention-card-grid { grid-template-columns: 1fr; }
  .retention-card-grid article,
  .retention-card-grid article:nth-child(2n),
  .retention-card-grid article:nth-last-child(-n+2) { border: 0; border-top: 1px solid #e0d6d2; min-height: 0; padding: 29px 0 36px; }
  .retention-card-grid article:last-child { border-bottom: 1px solid #e0d6d2; }
  .retention-card-grid h3 { margin-top: 24px; }
  .retention-campaign-card { transform: none; }
  .pricing-page .marketing-pricing-summary { padding-top: 44px; }
  .pricing-page .marketing-section-head h1 { font-size: clamp(32px, 10.2vw, 43px); }
}

@media (prefers-reduced-motion: reduce) {
  .nav-mega,
  .site-header .nav-panel,
  .design-frame,
  .website-more-grid img { transition: none !important; }
  .design-frame { transform: none; }
}
/* Go-live-Showcase: Booking-Designs und mobile Salon-Nutzung */
.booking-design-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}
.booking-design-grid article {
  text-align: center;
}
.booking-design-grid .marketing-phone {
  margin: 0 auto 18px;
  max-width: 310px;
}
.booking-design-grid h3 {
  margin: 0 0 5px;
}
.booking-design-grid p {
  margin: 0;
  color: var(--muted, #667085);
}
.home-mobile-shot-pair {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  background: transparent;
  box-shadow: none;
}
.home-mobile-shot-pair img {
  width: min(46%, 260px);
  height: auto;
  border-radius: 26px;
  border: 1px solid rgba(20, 28, 45, .12);
  box-shadow: 0 24px 64px -34px rgba(20, 28, 45, .48);
}
.home-mobile-shot-pair img:nth-child(2) {
  margin-top: 54px;
}
@media (max-width: 760px) {
  .booking-design-grid {
    grid-template-columns: 1fr;
  }
  .booking-design-grid article {
    display: grid;
    grid-template-columns: minmax(120px, 44%) 1fr;
    align-items: center;
    text-align: left;
    gap: 20px;
  }
  .booking-design-grid .marketing-phone {
    grid-row: span 2;
    margin: 0;
  }
  .home-mobile-shot-pair {
    order: 2;
  }
}
