/**
 * © 2025 my-webconcept.de – MF Online-Solutions Marko Feller. Alle Rechte vorbehalten.
 * watchedit-css-build: 2026-03-22-mobile-nav-grid
 */

:root {
  --bg: #17191c;
  --card: #23252a;
  --line: rgba(52, 216, 225, .18);
  --line-soft: rgba(255, 255, 255, .08);
  --text: #f7f7f7;
  --text-soft: #b0bec5;
  --accent: #1a9990;
  --accent-dark: #20b9b3;
  --accent-bright: #34d8e1;
  --purple: #8d48ff;
  --ink-on-accent: #0b1f24;
  --radius-main: 13px;
  --shadow: 0 2px 24px rgba(0, 0, 0, .16);
}

* { box-sizing: border-box; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body.watchedit-site,
body:has(.watchedit-site) {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
h1, h2, h3, p { box-sizing: border-box; }

.watchedit-site {
  min-height: 100vh;
  background:
    radial-gradient(circle at 16% 10%, rgba(26, 153, 144, .13), transparent 27%),
    radial-gradient(circle at 85% 25%, rgba(141, 72, 255, .08), transparent 22%),
    linear-gradient(180deg, #111417 0%, var(--bg) 38%, #14171a 100%);
}

/* Logo (Header via .site-brand, Footer via .brand-logo-full) */
.brand { display: inline-flex; align-items: center; }
.brand-logo-full {
  display: block;
  height: 40px;
  width: auto;
  max-width: min(180px, 100%);
}

.section { width: min(1300px, calc(100% - 64px)); margin-inline: auto; }

.hero-band {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-bg .glow-one {
  width: 520px;
  height: 520px;
  background: var(--accent-dark);
  top: 80px;
  left: 58%;
  opacity: .22;
}
.hero-bg .glow-two {
  width: 420px;
  height: 420px;
  background: var(--purple);
  right: 4%;
  bottom: 40px;
  opacity: .14;
}
.hero {
  position: relative;
  z-index: 1;
  min-height: 760px;
  display: grid;
  grid-template-columns: 44% 56%;
  align-items: center;
  padding: 70px 0 90px;
}
.eyebrow, .section-kicker {
  color: var(--accent-bright);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 13px;
  font-weight: 750;
}
.eyebrow { display: flex; align-items: center; gap: 12px; }
.eyebrow span {
  color: var(--ink-on-accent);
  letter-spacing: .08em;
  padding: 7px 11px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent-dark));
}
.hero h1 {
  font-size: clamp(58px, 6.1vw, 92px);
  letter-spacing: -.065em;
  line-height: .96;
  margin: 28px 0;
  max-width: 660px;
  font-weight: 820;
}
.hero h1 em {
  color: var(--accent-bright);
  font-style: normal;
  display: block;
  text-shadow: 0 0 40px rgba(52, 216, 225, .16);
}
.hero-text { color: var(--text-soft); font-size: 19px; line-height: 1.75; max-width: 650px; margin: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 57px;
  padding: 0 25px;
  border-radius: var(--radius-main);
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  cursor: pointer;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #0b1f24;
  background: linear-gradient(135deg, var(--accent-bright), #21c8cf 55%, var(--accent-dark));
  box-shadow: 0 15px 45px rgba(32, 185, 179, .22);
  border: 0;
}
.button-primary:hover { box-shadow: 0 19px 55px rgba(32, 185, 179, .32); }
.button-primary,
.button-primary span {
  color: #0b1f24 !important;
}
.button-ghost, .button-outline { border: 1px solid rgba(52, 216, 225, .62); background: rgba(23, 25, 28, .72); }
.button-ghost:hover, .button-outline:hover { border-color: var(--accent-bright); }
.button-small { min-height: 43px; padding: 0 18px; border-radius: 10px; font-size: 14px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 27px; color: #9aa8af; font-size: 12px; }
.hero-proof span { display: inline-flex; align-items: center; gap: 7px; }
.hero-proof svg { width: 16px; height: 16px; stroke: var(--accent-bright); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.hero-visual {
  position: relative;
  height: 760px;
  margin-left: 25px;
  width: 100%;
  min-width: 0;
}
.glow { position: absolute; border-radius: 50%; filter: blur(70px); }
.screen-card {
  margin: 0;
  position: absolute;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  line-height: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.screen-card img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 821 / 1915;
  object-fit: contain;
  filter: drop-shadow(0 28px 56px rgba(0, 0, 0, .45));
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.screen-main { width: 300px; z-index: 4; left: 50%; top: 12px; transform: translateX(-50%) translateZ(0); }
.screen-left, .screen-right { width: 220px; top: 72px; opacity: .88; }
.screen-left { left: 1%; transform: rotate(-6deg) translateZ(0); }
.screen-right { right: 0; transform: rotate(6deg) translateZ(0); }
.floating-card {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(35, 37, 42, .96);
  border: 1px solid rgba(52, 216, 225, .28);
  border-radius: var(--radius-main);
  padding: 13px 16px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .38);
  font-size: 12px;
}
.floating-top { right: 9px; top: 45px; }
.floating-bottom { left: 18px; bottom: 47px; }
.floating-card svg { width: 25px; stroke: var(--accent-bright); fill: none; stroke-width: 1.7; }
.floating-card span { display: grid; gap: 2px; color: #aab7bd; }
.floating-card b { color: white; }
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-bright); box-shadow: 0 0 0 6px rgba(52, 216, 225, .12); }

.quick-strip {
  width: min(1300px, calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: rgba(31, 34, 37, .82);
  border-radius: 17px;
  box-shadow: var(--shadow);
}
.quick-strip > div { display: flex; align-items: center; gap: 13px; padding: 20px 22px; border-right: 1px solid var(--line-soft); }
.quick-strip > div:last-child { border-right: 0; }
.quick-strip svg, .icon-box svg { width: 23px; height: 23px; stroke: var(--accent-bright); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.quick-strip span { display: grid; gap: 3px; color: #89979e; font-size: 12px; }
.quick-strip b { color: #f2f2f2; font-size: 14px; }

.features-section { padding: 145px 0 120px; }
.section-heading { display: grid; grid-template-columns: 1.3fr .7fr; gap: 100px; align-items: end; margin-bottom: 52px; }
.section-heading h2, .product-copy h2, .social-copy h2, .faq-title h2, .newsletter-panel h2 { font-size: clamp(37px, 4.1vw, 58px); letter-spacing: -.045em; line-height: 1.08; margin: 12px 0 0; }
.section-heading > p, .product-copy > p, .social-copy > p, .faq-title > p:last-child { color: var(--text-soft); line-height: 1.75; font-size: 16px; margin: 0; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.feature-card {
  padding: 30px;
  min-height: 245px;
  background: linear-gradient(145deg, rgba(35, 37, 42, .98), rgba(31, 34, 37, .98));
  border: 1px solid var(--line-soft);
  border-radius: 17px;
  transition: transform .25s ease, border-color .25s ease;
}
.feature-card:hover { transform: translateY(-5px); border-color: rgba(52, 216, 225, .35); }
.icon-box { width: 48px; height: 48px; display: grid; place-items: center; background: rgba(52, 216, 225, .08); border: 1px solid rgba(52, 216, 225, .14); border-radius: var(--radius-main); }
.feature-card h3 { font-size: 19px; margin: 24px 0 11px; }
.feature-card p { color: var(--text-soft); line-height: 1.7; margin: 0; font-size: 14px; }

.product-section { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 125px; padding: 90px 0 150px; }
.product-stage {
  min-height: 650px;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 30px;
  background: radial-gradient(circle, rgba(32, 185, 179, .16), rgba(31, 34, 37, .56) 58%, transparent 71%);
}
.product-stage::before { content: ""; position: absolute; inset: 10% 0; border: 1px solid rgba(52, 216, 225, .1); border-radius: 50%; }
.product-shot {
  margin: 0;
  position: relative;
  width: 340px;
  height: auto;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: rotate(-3deg) translateZ(0);
  z-index: 2;
  overflow: visible;
  line-height: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.product-shot img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 821 / 1915;
  object-fit: contain;
  filter: drop-shadow(0 30px 70px rgba(0, 0, 0, .48));
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.mini-stat { position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px; background: rgba(35, 37, 42, .96); border: 1px solid var(--line); border-radius: var(--radius-main); padding: 13px 18px; color: #b6c1c6; font-size: 13px; box-shadow: 0 18px 40px rgba(0, 0, 0, .3); }
.mini-stat span { color: var(--accent-bright); font-size: 19px; font-weight: 750; }
.stat-one { left: 2%; top: 25%; }
.stat-two { right: 1%; bottom: 26%; }
.product-stats {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.product-stats .mini-stat { pointer-events: auto; }
.product-copy > p { margin-top: 24px; max-width: 560px; }
.product-checklist {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #e1e6e8;
}
.product-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  line-height: 1.5;
}
.product-checklist .check-icon {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  margin-top: 1px;
}
.product-checklist .check-icon svg {
  width: 20px;
  height: 20px;
  display: block;
  stroke: var(--accent-bright);
  fill: none;
  stroke-width: 1.8;
}
.product-checklist li > span:last-child { flex: 1; min-width: 0; }
.product-link { margin-top: 34px; }

.social-section { background: linear-gradient(135deg, rgba(31, 34, 37, .99), rgba(18, 25, 29, .99)); border-block: 1px solid var(--line); }
.social-inner {
  min-height: 780px;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(40px, 6vw, 88px);
}
.social-copy > p { margin: 25px 0; max-width: 500px; }
.text-link { color: var(--accent-bright); font-weight: 700; display: inline-flex; gap: 14px; align-items: center; }
.social-visual {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  isolation: isolate;
}
.social-visual::before {
  content: "";
  position: absolute;
  inset: 8% 5% 12% 15%;
  background: radial-gradient(ellipse 90% 80% at 58% 42%, rgba(52, 216, 225, .22), transparent 68%);
  filter: blur(36px);
  pointer-events: none;
  z-index: 0;
}
.social-shots-composite {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 760px;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  mix-blend-mode: lighten;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.steps-section { padding: 145px 0; }
.section-heading.compact { grid-template-columns: 1fr; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.steps article { padding: 30px; border-top: 1px solid rgba(52, 216, 225, .5); background: rgba(35, 37, 42, .76); min-height: 200px; }
.steps article > span { color: var(--accent-bright); font-size: 13px; letter-spacing: .15em; }
.steps h3 { margin: 37px 0 10px; font-size: 20px; }
.steps p { color: var(--text-soft); line-height: 1.65; font-size: 14px; margin: 0; }

.faq-section { display: grid; grid-template-columns: .7fr 1.3fr; gap: 120px; padding: 40px 0 150px; }
.faq-title > p:last-child { margin-top: 24px; }
.faq-list { border-top: 1px solid var(--line-soft); }
details { border-bottom: 1px solid var(--line-soft); }
summary { list-style: none; padding: 25px 5px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; font-weight: 650; }
summary::-webkit-details-marker { display: none; }
summary span { color: var(--accent-bright); font-size: 25px; font-weight: 350; transition: transform .2s ease; }
details[open] summary span { transform: rotate(45deg); }
details p { margin: -8px 45px 24px 5px; color: var(--text-soft); line-height: 1.7; font-size: 14px; }

.newsletter-section { padding-bottom: 120px; }
.newsletter-panel {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: 80px;
  padding: 58px 65px;
  border: 1px solid rgba(52, 216, 225, .26);
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 0, rgba(52, 216, 225, .19), transparent 42%),
    radial-gradient(circle at 90% 100%, rgba(141, 72, 255, .14), transparent 38%),
    linear-gradient(130deg, #1f2528, #1c242a 58%, #211d35);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .25);
}
.newsletter-panel h2 { font-size: clamp(36px, 4vw, 55px); margin-top: 15px; }
.newsletter-panel p { color: #bbc5ca; line-height: 1.7; margin: 18px 0 0; }
.newsletter-panel ul { list-style: none; padding: 0; margin: 22px 0 0; color: #aebbc0; font-size: 14px; display: grid; gap: 8px; }
.newsletter-panel li::before { content: "✓"; color: var(--accent-bright); margin-right: 9px; }
.newsletter-badge { display: inline-flex; align-items: center; gap: 7px; padding: 7px 11px; border-radius: 99px; background: var(--accent-bright); color: var(--ink-on-accent); text-transform: uppercase; letter-spacing: .12em; font-size: 11px; font-weight: 800; }
.newsletter-badge svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.newsletter-action { display: grid; gap: 12px; }
.newsletter-action small { color: #9aa7ad; text-align: center; }
.newsletter-form { display: grid; gap: 12px; }
.newsletter-form input[type="email"] {
  width: 100%;
  min-height: 57px;
  padding: 0 18px;
  border-radius: var(--radius-main);
  border: 1px solid rgba(52, 216, 225, .35);
  background: rgba(8, 12, 16, .55);
  color: var(--text);
}
.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--accent-bright);
  box-shadow: 0 0 0 3px rgba(52, 216, 225, .12);
}
.newsletter-form .form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #aebbc0;
  font-size: 13px;
  line-height: 1.5;
}
.newsletter-form .form-check input { margin-top: 3px; accent-color: var(--accent-bright); }
.newsletter-form .form-msg {
  padding: 14px 16px;
  border-radius: var(--radius-main);
  background: rgba(52, 216, 225, .12);
  border: 1px solid rgba(52, 216, 225, .35);
  color: var(--text);
  font-size: 14px;
}
.newsletter-form .form-msg.is-error {
  background: rgba(239, 68, 68, .12);
  border-color: rgba(239, 68, 68, .35);
}
.d-none { display: none !important; }

.scroll-top-btn {
  position: fixed;
  right: max(18px, calc((100vw - min(1300px, calc(100% - 64px))) / 2 + 18px));
  bottom: 28px;
  z-index: 900;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(52, 216, 225, .45);
  border-radius: 14px;
  background: rgba(23, 25, 28, .94);
  color: var(--accent-bright);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .34);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, border-color .2s ease, box-shadow .2s ease;
}
.scroll-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-top-btn:hover {
  border-color: var(--accent-bright);
  box-shadow: 0 16px 42px rgba(32, 185, 179, .22);
}
.scroll-top-btn:focus-visible {
  outline: none;
  border-color: var(--accent-bright);
  box-shadow: 0 0 0 3px rgba(52, 216, 225, .18);
}
.scroll-top-btn svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.watchedit-footer {
  width: min(1300px, calc(100% - 64px));
  margin: 0 auto;
  padding: 55px 0 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 45px;
  align-items: center;
  border-top: 1px solid var(--line-soft);
}
.footer-brand .brand-logo-full { height: 34px; }
.footer-brand p { color: #819096; font-size: 12px; margin: 10px 0 0; }
.footer-links { display: flex; gap: 24px; color: #9aa6ac; font-size: 12px; }
.footer-links a:hover { color: var(--accent-bright); }
.copyright { grid-column: 1 / -1; color: #6c797f; font-size: 11px; margin: 0; }

.site-content > .page.watchedit-landing > .page-header,
.site-content > .page.page-legal > .page-header { display: none; }

body.watchedit-site .block,
body:has(.watchedit-site) .block {
  margin: 0 !important;
}

.legal-page {
  width: 100%;
  min-height: 60vh;
}
.legal-hero {
  position: relative;
  padding: 72px 0 36px;
  text-align: left;
}
.legal-hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: var(--accent-dark);
  filter: blur(70px);
  opacity: .14;
  top: -40px;
  right: 8%;
  pointer-events: none;
}
.legal-hero .section-kicker { margin: 0; }
.legal-hero h1 {
  font-size: clamp(36px, 5vw, 52px);
  letter-spacing: -.04em;
  line-height: 1.08;
  margin: 12px 0 0;
  color: var(--text);
  font-weight: 800;
}
.legal-lead {
  margin: 16px 0 0;
  max-width: 620px;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.7;
}
.legal-main { padding: 0 0 100px; }
.legal-card {
  width: 100%;
  max-width: none;
  padding: 34px 36px;
  border-radius: 18px;
  border: 1px solid var(--line-soft);
  background: linear-gradient(145deg, rgba(35, 37, 42, .98), rgba(31, 34, 37, .98));
  box-shadow: var(--shadow);
}
.legal-block + .legal-block {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
}
.legal-block h2 {
  margin: 0 0 12px;
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.02em;
}
.legal-block p {
  margin: 0 0 12px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.75;
}
.legal-block p:last-child { margin-bottom: 0; }
.legal-block strong { color: #e8ecef; font-weight: 650; }
.legal-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.legal-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.65;
}
.legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 0 4px rgba(52, 216, 225, .12);
}
.legal-page a:not(.text-link) {
  color: var(--accent-bright);
  font-weight: 600;
  text-decoration: none;
}
.legal-page a:not(.text-link):hover { text-decoration: underline; }
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  font-size: 15px;
}
.legal-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 6px 12px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(35, 37, 42, .72);
  font-size: 13px;
  font-weight: 600;
}
.legal-lang-switch a {
  color: var(--text-soft);
  text-decoration: none;
  transition: color .2s ease;
}
.legal-lang-switch a:hover {
  color: var(--accent-bright);
}
.legal-lang-switch span[aria-current="page"] {
  color: var(--accent-bright);
}

/* Plattform-Integration: volle Breite, Header/Footer watchedIT-Stil */
body.watchedit-site .site-body,
body:has(.watchedit-site) .site-body,
body.watchedit-site .site-content,
body:has(.watchedit-site) .site-content,
body.watchedit-site .page.watchedit-landing,
body:has(.watchedit-site) .page.watchedit-landing,
body.watchedit-site .page.watchedit-landing .page-body,
body:has(.watchedit-site) .page.watchedit-landing .page-body,
body.watchedit-site .page.page-legal,
body:has(.watchedit-site) .page.page-legal,
body.watchedit-site .page.page-legal .page-body,
body:has(.watchedit-site) .page.page-legal .page-body,
body.watchedit-site .page.page-legal .block-html,
body:has(.watchedit-site) .page.page-legal .block-html {
  max-width: none !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
body.watchedit-site .site-body,
body:has(.watchedit-site) .site-body {
  display: block !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding: 0 !important;
}
body.watchedit-site .page.page-legal .page-body,
body:has(.watchedit-site) .page.page-legal .page-body {
  margin: 0 !important;
  color: inherit !important;
}
body.watchedit-site .site-footer-region,
body:has(.watchedit-site) .site-footer-region {
  max-width: none !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
body.watchedit-site .site-header,
body:has(.watchedit-site) .site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(17, 19, 22, .94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 0 !important;
}
body.watchedit-site .site-header .site-header-inner,
body:has(.watchedit-site) .site-header .site-header-inner {
  width: min(1440px, calc(100% - 64px)) !important;
  max-width: none !important;
  margin-inline: auto !important;
  min-height: 96px;
  padding-left: 0;
  padding-right: 0;
}
body.watchedit-site .site-header .site-nav ul,
body:has(.watchedit-site) .site-header .site-nav ul {
  flex-wrap: nowrap !important;
  justify-content: flex-end;
}
body:has(.watchedit-site) .site-header .site-brand {
  color: var(--text) !important;
  font-weight: 650;
  letter-spacing: -.02em;
}
body:has(.watchedit-site) .site-header .site-nav a,
body.watchedit-site .site-header .site-nav a {
  color: #c0c8cc !important;
  font-weight: 550 !important;
  text-decoration: none !important;
  transition: color .2s ease;
}
body:has(.watchedit-site) .site-header .site-nav a:hover,
body:has(.watchedit-site) .site-header .site-nav a.is-active,
body.watchedit-site .site-header .site-nav a:hover,
body.watchedit-site .site-header .site-nav a.is-active {
  color: var(--accent-bright) !important;
}
@media (min-width: 1101px) {
  body.watchedit-site .site-header .site-header-inner,
  body:has(.watchedit-site) .site-header .site-header-inner {
    flex-wrap: nowrap !important;
  }
}

@media (min-width: 991px) {
  body:has(.watchedit-site) .site-header .site-nav-panel,
  body.watchedit-site .site-header .site-nav-panel {
    display: flex !important;
    flex: 1 1 auto;
    align-items: center;
    justify-content: flex-end;
    width: auto !important;
    flex-basis: auto !important;
    order: unset !important;
    border-top: 0 !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
  }
  body:has(.watchedit-site) .site-header .site-nav-toggle,
  body.watchedit-site .site-header .site-nav-toggle {
    display: none !important;
  }
  body:has(.watchedit-site) .site-header .site-nav ul,
  body.watchedit-site .site-header .site-nav ul {
    flex-direction: row !important;
    gap: 36px;
  }
  body:has(.watchedit-site) .site-header .site-nav a,
  body.watchedit-site .site-header .site-nav a {
    display: inline !important;
    padding: 0 !important;
    border-bottom: 0 !important;
    font-size: 15px;
  }
}
body.watchedit-site.is-nav-open {
  overflow: hidden;
}
body.watchedit-site .site-header::after,
body:has(.watchedit-site) .site-header::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100vw;
  margin-left: -50vw;
  border-bottom: 1px solid var(--line);
  pointer-events: none;
}
body.watchedit-site .site-footer-region .watchedit-footer,
body:has(.watchedit-site) .site-footer-region .watchedit-footer {
  width: min(1440px, calc(100% - 64px));
  margin-inline: auto;
  border-bottom: 0 !important;
}

/* Plattform-Theme + Bootstrap: watchedIT-Farben erzwingen */
body:has(.watchedit-site) .watchedit-site .hero-actions .button-primary,
body:has(.watchedit-site) .watchedit-site .hero-actions .button-primary span,
body.watchedit-site .watchedit-site .hero-actions .button-primary,
body.watchedit-site .watchedit-site .hero-actions .button-primary span {
  color: #0b1f24 !important;
}
body:has(.watchedit-site) .site-footer-region .watchedit-footer .footer-links a,
body.watchedit-site .site-footer-region .watchedit-footer .footer-links a {
  color: #9aa6ac !important;
  font-weight: 400 !important;
  text-decoration: none !important;
}
body:has(.watchedit-site) .site-footer-region .watchedit-footer .footer-links a:hover,
body.watchedit-site .site-footer-region .watchedit-footer .footer-links a:hover {
  color: var(--accent-bright) !important;
}
body:has(.watchedit-site) .site-footer-region .watchedit-footer .brand,
body.watchedit-site .site-footer-region .watchedit-footer .brand {
  color: var(--text) !important;
  text-decoration: none !important;
}
body:has(.watchedit-site) .site-content .watchedit-site a:not(.button):not(.btn),
body.watchedit-site .site-content .watchedit-site a:not(.button):not(.btn) {
  color: inherit !important;
  font-weight: inherit !important;
  text-decoration: none !important;
}
body:has(.watchedit-site) .watchedit-site .text-link,
body:has(.watchedit-site) .watchedit-site .product-link,
body:has(.watchedit-site) .legal-page .text-link,
body.watchedit-site .watchedit-site .text-link,
body.watchedit-site .watchedit-site .product-link,
body.watchedit-site .legal-page .text-link {
  color: var(--accent-bright) !important;
  font-weight: 700 !important;
}
body:has(.watchedit-site) .watchedit-site .product-checklist,
body.watchedit-site .watchedit-site .product-checklist {
  list-style: none !important;
  padding-left: 0 !important;
  margin-bottom: 0 !important;
}
body:has(.watchedit-site) .watchedit-site .product-checklist li,
body.watchedit-site .watchedit-site .product-checklist li {
  margin: 0 !important;
}
body:has(.watchedit-site) .legal-list,
body.watchedit-site .legal-list {
  list-style: none !important;
  padding-left: 0 !important;
  margin-bottom: 0 !important;
}
body:has(.watchedit-site) .watchedit-site .newsletter-form .form-check a,
body.watchedit-site .watchedit-site .newsletter-form .form-check a {
  color: var(--accent-bright) !important;
}

@media (min-width: 769px) and (max-width: 990px) {
  html { scroll-padding-top: 80px; }
  body:has(.watchedit-site) .site-header .site-header-inner,
  body.watchedit-site .site-header .site-header-inner {
    display: grid !important;
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "nav";
    align-items: start;
    min-height: 0;
    padding-block: 14px 10px;
    row-gap: 0;
    flex-wrap: unset !important;
  }
  body:has(.watchedit-site) .site-header .site-brand,
  body.watchedit-site .site-header .site-brand {
    grid-area: brand;
    order: unset !important;
  }
  body:has(.watchedit-site) .site-header .site-nav-toggle,
  body.watchedit-site .site-header .site-nav-toggle {
    display: none !important;
  }
  body:has(.watchedit-site) .site-header .site-nav-panel,
  body.watchedit-site .site-header .site-nav-panel {
    grid-area: nav;
    order: unset !important;
    display: block !important;
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start !important;
    gap: 0;
    padding: 4px 0 0;
    margin-top: 0;
    border-top: 1px solid var(--line-soft);
  }
  body:has(.watchedit-site) .site-header .site-nav,
  body.watchedit-site .site-header .site-nav {
    width: 100%;
  }
  body:has(.watchedit-site) .site-header .site-nav ul,
  body.watchedit-site .site-header .site-nav ul {
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    align-items: flex-start !important;
    gap: 0;
    width: 100%;
  }
  body:has(.watchedit-site) .site-header .site-nav li + li,
  body.watchedit-site .site-header .site-nav li + li {
    border-top: 0 !important;
  }
  body:has(.watchedit-site) .site-header .site-nav a,
  body.watchedit-site .site-header .site-nav a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: 16px;
  }
  body:has(.watchedit-site) .site-header .site-nav li:last-child a,
  body.watchedit-site .site-header .site-nav li:last-child a {
    border-bottom: 0;
  }
}

@media (max-width: 768px) {
  html { scroll-padding-top: 80px; }
  body:has(.watchedit-site) .site-header .site-header-inner,
  body.watchedit-site .site-header .site-header-inner {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand toggle"
      "nav nav";
    align-items: center;
    min-height: 74px;
    padding-block: 14px;
    column-gap: 12px;
    row-gap: 0;
    flex-wrap: unset !important;
  }
  body:has(.watchedit-site) .site-header .site-brand,
  body.watchedit-site .site-header .site-brand {
    grid-area: brand;
    order: unset !important;
  }
  body:has(.watchedit-site) .site-header .site-nav-toggle,
  body.watchedit-site .site-header .site-nav-toggle {
    grid-area: toggle;
    display: inline-flex !important;
    order: unset !important;
    margin-left: 0 !important;
    border: 1px solid rgba(52, 216, 225, .35);
    border-radius: 10px;
    background: rgba(23, 25, 28, .92);
    color: var(--text);
  }
  body:has(.watchedit-site) .site-header .site-nav-panel,
  body.watchedit-site .site-header .site-nav-panel {
    grid-area: nav;
    order: unset !important;
    display: none !important;
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start !important;
    gap: 0;
    padding: 8px 0 0;
    margin-top: 8px;
    border-top: 1px solid var(--line-soft);
  }
  body:has(.watchedit-site) .site-header.is-nav-open .site-nav-panel,
  body.watchedit-site .site-header.is-nav-open .site-nav-panel {
    display: block !important;
  }
  body:has(.watchedit-site) .site-header .site-nav,
  body.watchedit-site .site-header .site-nav {
    width: 100%;
  }
  body:has(.watchedit-site) .site-header .site-nav ul,
  body.watchedit-site .site-header .site-nav ul {
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    align-items: flex-start !important;
    gap: 0;
    width: 100%;
  }
  body:has(.watchedit-site) .site-header .site-nav li + li,
  body.watchedit-site .site-header .site-nav li + li {
    border-top: 0 !important;
  }
  body:has(.watchedit-site) .site-header .site-nav a,
  body.watchedit-site .site-header .site-nav a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: 16px;
  }
  body:has(.watchedit-site) .site-header .site-nav li:last-child a,
  body.watchedit-site .site-header .site-nav li:last-child a {
    border-bottom: 0;
  }
}

@media (max-width: 1100px) {
  .hero-band {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .hero { grid-template-columns: 1fr; padding-top: 24px; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-visual { width: min(720px, 100%); margin: 55px auto 0; }
  .quick-strip { grid-template-columns: repeat(2, 1fr); }
  .quick-strip > div:nth-child(2) { border-right: 0; }
  .quick-strip > div:nth-child(-n+2) { border-bottom: 1px solid var(--line-soft); }
  .product-section {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 56px 0 72px;
  }
  .product-copy { order: -1; text-align: left; }
  .product-stage {
    min-height: 520px;
    width: 100%;
    max-width: 420px;
    margin-inline: auto;
  }
  .product-shot {
    width: min(300px, 78vw);
    transform: rotate(-3deg) translateZ(0);
  }
  .product-stats .mini-stat {
    font-size: 12px;
    padding: 11px 14px;
  }
  .product-stats .mini-stat span { font-size: 17px; }
  .stat-one { left: 0; top: 22%; }
  .stat-two { right: 0; bottom: 22%; }
  .social-inner { gap: 35px; min-height: auto; }
  .faq-section { gap: 60px; }
}

@media (max-width: 760px) {
  .section, .quick-strip, .watchedit-footer, .legal-hero, .legal-main { width: min(100% - 34px, 1300px); }
  .legal-hero { padding: 24px 0 24px; }
  .legal-hero h1 { font-size: clamp(30px, 8.5vw, 40px); }
  .legal-lead { font-size: 15px; }
  .legal-main { padding-bottom: 72px; }
  .legal-card { padding: 24px 20px; border-radius: 14px; }
  .legal-block + .legal-block { margin-top: 22px; padding-top: 22px; }
  .legal-block h2 { font-size: 17px; }
  .legal-block p, .legal-list li { font-size: 14px; }
  .hero { min-height: auto; padding: 20px 0 75px; }
  .hero h1 { font-size: clamp(48px, 15vw, 67px); }
  .hero-text { font-size: 16px; line-height: 1.65; }
  .eyebrow { flex-direction: column; }
  .hero-actions { width: 100%; }
  .hero-actions .button { width: 100%; }
  .hero-proof { justify-content: center; }
  .hero-visual { height: 580px; margin-top: 40px; }
  .screen-main { width: 250px; top: 8px; }
  .screen-left, .screen-right { width: 165px; top: 64px; }
  .screen-left { left: -10%; }
  .screen-right { right: -10%; }
  .floating-top { right: -2px; }
  .floating-bottom { left: 0; bottom: 20px; }
  .quick-strip { grid-template-columns: 1fr; }
  .quick-strip > div { border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .quick-strip > div:last-child { border-bottom: 0; }
  .features-section { padding: 72px 0 56px; }
  .section-heading { grid-template-columns: 1fr; gap: 16px; margin-bottom: 28px; }
  .section-heading h2 { font-size: clamp(28px, 8vw, 40px); }
  .feature-grid { grid-template-columns: 1fr; gap: 10px; }
  .feature-card {
    min-height: auto;
    padding: 18px 18px 18px 16px;
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    align-items: start;
  }
  .feature-card .icon-box {
    grid-row: 1 / span 2;
    margin-bottom: 0;
    width: 44px;
    height: 44px;
  }
  .feature-card h3 {
    margin: 0 0 4px;
    font-size: 17px;
    align-self: end;
  }
  .feature-card p {
    grid-column: 2;
    font-size: 13px;
    line-height: 1.55;
  }
  .product-section { padding: 40px 0 52px; gap: 18px; }
  .product-copy .section-kicker { font-size: 11px; }
  .product-copy h2 {
    font-size: clamp(26px, 7.5vw, 34px);
    line-height: 1.12;
    margin-top: 8px;
  }
  .product-copy > p {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.6;
  }
  .product-checklist {
    margin-top: 16px;
    gap: 8px;
    font-size: 14px;
  }
  .product-checklist li {
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    background: rgba(35, 37, 42, .78);
    border: 1px solid var(--line-soft);
    border-radius: 12px;
    line-height: 1.45;
  }
  .product-checklist .check-icon {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    margin-top: 0;
    background: rgba(52, 216, 225, .1);
    border: 1px solid rgba(52, 216, 225, .18);
    border-radius: 8px;
  }
  .product-checklist .check-icon svg {
    width: 14px;
    height: 14px;
  }
  .product-link { margin-top: 16px; font-size: 14px; }
  .product-stage {
    min-height: 460px;
    border-radius: 24px;
  }
  .product-shot {
    width: min(280px, 82vw);
    transform: rotate(-3deg) translateZ(0);
  }
  .product-stats .mini-stat {
    font-size: 11px;
    padding: 10px 12px;
    white-space: nowrap;
  }
  .product-stats .mini-stat span { font-size: 16px; }
  .stat-one { left: -2%; top: 20%; }
  .stat-two { right: -2%; bottom: 20%; }
  .social-inner { grid-template-columns: 1fr; padding-block: 52px; gap: 28px; }
  .social-copy h2 { font-size: clamp(26px, 7.5vw, 34px); }
  .social-copy > p { font-size: 15px; margin: 16px 0; }
  .social-shots-composite {
    max-width: 100%;
  }
  .steps-section { padding: 100px 0; }
  .steps { grid-template-columns: 1fr; }
  .steps article { min-height: auto; }
  .faq-section { grid-template-columns: 1fr; gap: 40px; padding-bottom: 100px; }
  .newsletter-panel { grid-template-columns: 1fr; gap: 40px; padding: 38px 25px; }
  .newsletter-action .button { padding-inline: 16px; }
  .watchedit-footer { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; gap: 16px 22px; }
  .scroll-top-btn {
    right: 17px;
    bottom: 22px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }
}

@media (max-width: 410px) {
  .screen-main { width: 220px; }
  .screen-left, .screen-right { width: 140px; }
  .hero-visual { height: 520px; }
  .product-stage { min-height: 400px; }
  .product-shot { width: min(250px, 88vw); }
  .product-stats .mini-stat {
    font-size: 10px;
    padding: 9px 10px;
  }
  .product-stats .mini-stat span { font-size: 14px; }
  .stat-one { left: -4%; top: 18%; }
  .stat-two { right: -4%; bottom: 18%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}