/* ============================================================
   BLICKMACHER · Markenstil (hell, Marineblau + Orange)
   Eigenständiges Stylesheet – unabhängig vom vorkompilierten output.css.
   Alle Klassen mit Präfix "vx-".
   ============================================================ */

:root {
  --vx-bg: #FAF8F5;          /* warmes Off-White */
  --vx-surface: #FFFFFF;
  --vx-sand: #F3EEE7;        /* ruhige Zweitfläche */
  --vx-line: #E7E1D9;
  --vx-ink: #16213E;         /* Marineblau – Schrift & dunkle Flächen */
  --vx-ink-2: #22304F;
  --vx-text: #5A6378;        /* Fließtext */
  --vx-muted: #8A91A1;
  --vx-accent: #F2541B;      /* Orange – Akzente, große Schrift */
  --vx-accent-btn: #D1400C;  /* Orange für Buttons (AA-Kontrast mit Weiß) */
  --vx-accent-btn-hover: #B8370A;
  --vx-accent-soft: #FFE6DA;
  --vx-accent-text: #B03A0C; /* Orange für kleine Schrift auf hell */
  --vx-radius: 14px;
  --vx-radius-sm: 10px;
  --vx-shadow: 0 1px 2px rgba(22,33,62,.06), 0 12px 32px -12px rgba(22,33,62,.18);
  --vx-shadow-lg: 0 2px 4px rgba(22,33,62,.06), 0 30px 60px -20px rgba(22,33,62,.28);
  --vx-font-head: 'Epilogue', 'Inter', system-ui, sans-serif;
  --vx-font-body: 'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.vx {
  margin: 0;
  background: var(--vx-bg);
  color: var(--vx-text);
  font-family: var(--vx-font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.vx img { max-width: 100%; height: auto; display: block; }
.vx a { color: inherit; text-decoration: none; }
.vx h1, .vx h2, .vx h3, .vx h4 {
  font-family: var(--vx-font-head);
  color: var(--vx-ink);
  letter-spacing: -0.025em;
  line-height: 1.1;
  font-weight: 800;
}
:where(.vx) :is(h1,h2,h3,h4) { margin: 0; }
:where(.vx) p { margin: 0; }
.vx :focus-visible { outline: 3px solid var(--vx-accent); outline-offset: 3px; border-radius: 6px; }
.vx-hl { color: var(--vx-accent); }

.vx-container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.vx-section { padding: 96px 0; }
.vx-section--tight { padding: 64px 0; }
.vx-section--white { background: var(--vx-surface); }
.vx-section--sand { background: var(--vx-sand); }
.vx-section--dark { background: var(--vx-ink); color: #C9CFDC; }
.vx-section--dark h2, .vx-section--dark h3 { color: #FFFFFF; }

/* ---------- Typo-Bausteine ---------- */
.vx-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: .04em;
  color: var(--vx-accent-text);
  margin-bottom: 16px;
}
.vx-eyebrow::before { content: ""; width: 18px; height: 2px; background: var(--vx-accent); border-radius: 2px; }
.vx-section--dark .vx-eyebrow { color: #FF9A73; }
.vx-h2 { font-size: clamp(30px, 4.2vw, 46px); margin-bottom: 18px !important; }
.vx-lead { font-size: 19px; max-width: 640px; }
.vx-head { max-width: 720px; margin-bottom: 52px; }
.vx-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.vx-head--center .vx-lead { margin: 0 auto; }

/* ---------- Buttons ---------- */
.vx-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--vx-font-body); font-weight: 600; font-size: 16px; line-height: 1;
  padding: 17px 26px; border-radius: 10px; border: 2px solid transparent;
  cursor: pointer; transition: background .2s, color .2s, border-color .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
}
.vx-btn svg { width: 18px; height: 18px; flex: none; }
.vx-btn--primary { background: var(--vx-accent-btn); color: #FFFFFF !important; box-shadow: 0 8px 20px -8px rgba(209,64,12,.55); }
.vx-btn--primary:hover { background: var(--vx-accent-btn-hover); transform: translateY(-1px); }
.vx-btn--ghost { background: transparent; color: var(--vx-ink) !important; border-color: var(--vx-line); }
.vx-btn--ghost:hover { border-color: var(--vx-ink); }
.vx-btn--light { background: #FFFFFF; color: var(--vx-ink) !important; }
.vx-btn--light:hover { background: var(--vx-accent-soft); }
.vx-btn--outline-light { color: #FFFFFF !important; border-color: rgba(255,255,255,.35); }
.vx-btn--outline-light:hover { border-color: #FFFFFF; }
.vx-btn--sm { padding: 12px 18px; font-size: 15px; }
.vx-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--vx-ink); border-bottom: 2px solid var(--vx-accent); padding-bottom: 2px; transition: gap .2s; }
.vx-link:hover { gap: 10px; }
.vx-section--dark .vx-link { color: #FFFFFF; }

/* ---------- Header ---------- */
.vx-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,248,245,.92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--vx-line);
}
.vx-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 72px; }
.vx-logo { font-family: var(--vx-font-head); font-weight: 800; font-size: 25px; letter-spacing: -0.04em; color: var(--vx-ink); display: inline-flex; align-items: baseline; }
.vx-logo__dot { color: var(--vx-accent); }
.vx-logo__mark { display: block; height: 26px; width: auto; color: var(--vx-ink); }
.vx-footer .vx-logo__mark { color: #FFFFFF; }
@media (max-width: 640px) { .vx-logo__mark { height: 22px; } }
.vx-nav { display: none; gap: 30px; }
.vx-nav a { font-size: 15px; font-weight: 500; color: var(--vx-ink); opacity: .82; transition: opacity .2s, color .2s; }
.vx-nav a:hover { opacity: 1; color: var(--vx-accent-text); }
.vx-header__actions { display: flex; align-items: center; gap: 10px; }
.vx-header .vx-phone { display: none; background: #FFFFFF; }
.vx-phone svg { color: var(--vx-accent); }
.vx-header .vx-btn--primary { display: none; }
.vx-icon-btn { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border-radius: 10px; border: 1px solid var(--vx-line); background: #FFFFFF; color: var(--vx-ink); cursor: pointer; }
.vx-icon-btn svg { width: 22px; height: 22px; }
@media (min-width: 720px) { .vx-header .vx-btn--primary { display: inline-flex; } .vx-header .vx-phone { display: inline-flex; } .vx-icon-btn--call { display: none; } }
@media (min-width: 1100px) { .vx-nav { display: flex; } .vx-burger { display: none; } }

.vx-mobile-menu {
  position: fixed; inset: 0; z-index: 110; background: var(--vx-bg);
  transform: translateX(100%); transition: transform .3s ease; display: flex; flex-direction: column; padding: 20px 24px 32px;
}
.vx-mobile-menu.is-open { transform: translateX(0); }
.vx-mobile-menu__top { display: flex; justify-content: space-between; align-items: center; height: 52px; margin-bottom: 24px; }
.vx-mobile-menu nav { display: flex; flex-direction: column; }
.vx-mobile-menu nav a { font-family: var(--vx-font-head); font-weight: 700; font-size: 28px; color: var(--vx-ink); padding: 14px 0; border-bottom: 1px solid var(--vx-line); }
.vx-mobile-menu__cta { margin-top: auto; display: grid; gap: 12px; }

/* ---------- Hero ---------- */
.vx-hero { padding: 64px 0 88px; overflow: hidden; }
.vx-hero__grid { display: grid; gap: 56px; align-items: center; }
@media (min-width: 1024px) { .vx-hero__grid { grid-template-columns: 1.02fr 1fr; gap: 48px; } .vx-hero { padding: 80px 0 104px; } }
.vx-pill { display: inline-flex; align-items: center; gap: 10px; background: #FFFFFF; border: 1px solid var(--vx-line); border-radius: 999px; padding: 7px 14px 7px 8px; font-size: 14px; font-weight: 500; color: var(--vx-ink); margin-bottom: 26px; }
.vx-pill b { background: var(--vx-accent-soft); color: var(--vx-accent-text); font-weight: 700; border-radius: 999px; padding: 3px 10px; font-size: 13px; }
.vx-hero h1 { font-size: clamp(42px, 6.4vw, 72px); line-height: 1.02; letter-spacing: -0.035em; margin-bottom: 24px; }
.vx-hero__lead { font-size: 19px; max-width: 540px; margin-bottom: 34px; }
.vx-hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.vx-checks { display: flex; flex-wrap: wrap; gap: 8px 20px; list-style: none; padding: 0; margin: 0 0 40px; font-size: 15px; color: var(--vx-ink); }
.vx-checks li { display: inline-flex; align-items: center; gap: 7px; }
.vx-checks svg { width: 18px; height: 18px; color: var(--vx-accent); flex: none; }
.vx-facts { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; max-width: 520px; padding-top: 26px; border-top: 1px solid var(--vx-line); }
.vx-facts strong { display: block; font-family: var(--vx-font-head); font-weight: 800; font-size: clamp(20px, 2.4vw, 26px); color: var(--vx-ink); letter-spacing: -0.02em; line-height: 1.15; }
.vx-facts span { font-size: 14px; }

/* Hero-Visual: Website + Video + Produktfoto */
.vx-hero__visual { position: relative; padding: 36px 4% 60px 6%; }
.vx-browser { background: #FFFFFF; border-radius: var(--vx-radius); box-shadow: var(--vx-shadow-lg); overflow: hidden; border: 1px solid var(--vx-line); }
.vx-browser__bar { display: flex; align-items: center; gap: 6px; padding: 11px 14px; border-bottom: 1px solid var(--vx-line); background: #FBFAF8; }
.vx-browser__bar i { width: 10px; height: 10px; border-radius: 50%; background: #E3DDD5; }
.vx-browser__url { margin-left: 10px; flex: 1; font-size: 12px; color: var(--vx-muted); background: var(--vx-sand); border-radius: 6px; padding: 4px 10px; font-style: normal; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vx-browser img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: top; }
.vx-float { position: absolute; background: #FFFFFF; border-radius: 12px; box-shadow: var(--vx-shadow-lg); overflow: hidden; border: 1px solid var(--vx-line); }
.vx-float img { width: 100%; object-fit: cover; }
.vx-float__label { display: flex; align-items: center; gap: 8px; padding: 9px 12px; font-size: 13px; font-weight: 600; color: var(--vx-ink); }
.vx-float__label em { font-style: normal; font-weight: 500; color: var(--vx-muted); }
.vx-float--video { left: 0; bottom: 0; width: 48%; }
.vx-float--video .vx-float__media { position: relative; }
.vx-float--video img { aspect-ratio: 16 / 9; }
.vx-float__play { position: absolute; inset: 0; margin: auto; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.95); display: flex; align-items: center; justify-content: center; color: var(--vx-accent-btn); box-shadow: 0 6px 16px rgba(0,0,0,.25); }
.vx-float__play svg { width: 18px; height: 18px; margin-left: 3px; }
.vx-float--photo { right: 0; top: 0; width: 30%; }
.vx-float--photo img { aspect-ratio: 1 / 1; object-position: 100% 0; }
.vx-chip { position: absolute; right: 8%; bottom: 20px; display: inline-flex; align-items: center; gap: 8px; background: var(--vx-ink); color: #FFFFFF; font-size: 14px; font-weight: 600; padding: 10px 16px; border-radius: 999px; box-shadow: var(--vx-shadow); }
.vx-chip::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--vx-accent); box-shadow: 0 0 0 4px rgba(242,84,27,.25); }
@media (max-width: 600px) {
  .vx-hero__visual { padding: 24px 0 52px 4%; }
  .vx-float__label { font-size: 11px; padding: 6px 8px; }
  .vx-float__label em { display: none; }
  .vx-chip { font-size: 12px; padding: 8px 12px; right: 0; bottom: 8px; }
  .vx-float__play { width: 34px; height: 34px; }
}

/* ---------- Vertrauensleiste ---------- */
.vx-trust { background: var(--vx-surface); border-top: 1px solid var(--vx-line); border-bottom: 1px solid var(--vx-line); }
.vx-trust__grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); }
@media (min-width: 900px) { .vx-trust__grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.vx-trust__item { display: flex; gap: 14px; align-items: flex-start; padding: 28px 20px; }
.vx-trust__item + .vx-trust__item { border-left: 1px solid var(--vx-line); }
@media (max-width: 899px) { .vx-trust__item:nth-child(3) { border-left: 0; } .vx-trust__item:nth-child(n+3) { border-top: 1px solid var(--vx-line); } }
.vx-trust__icon { width: 40px; height: 40px; border-radius: 10px; background: var(--vx-accent-soft); color: var(--vx-accent-text); display: flex; align-items: center; justify-content: center; flex: none; }
.vx-trust__icon svg { width: 21px; height: 21px; }
.vx-trust__item strong { display: block; color: var(--vx-ink); font-size: 16px; line-height: 1.3; margin-bottom: 3px; }
.vx-trust__item span { font-size: 14px; line-height: 1.45; }
@media (max-width: 480px) { .vx-trust__item { flex-direction: column; gap: 10px; padding: 22px 16px; } }

/* ---------- Leistungs-Karten ---------- */
.vx-cards { display: grid; gap: 24px; }
@media (min-width: 900px) { .vx-cards { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.vx-card { background: var(--vx-surface); border: 1px solid var(--vx-line); border-radius: var(--vx-radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s; }
.vx-card:hover { transform: translateY(-4px); box-shadow: var(--vx-shadow-lg); }
.vx-card__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--vx-sand); }
.vx-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.vx-card:hover .vx-card__media img { transform: scale(1.04); }
.vx-card__body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.vx-card__tag { font-size: 13px; font-weight: 600; color: var(--vx-accent-text); margin-bottom: 10px; }
.vx-card h3 { font-size: 24px; margin-bottom: 12px; }
.vx-card p { font-size: 16px; margin-bottom: 22px; }
.vx-card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 20px; border-top: 1px solid var(--vx-line); }
.vx-price { font-size: 15px; }
.vx-price strong { font-family: var(--vx-font-head); font-size: 24px; font-weight: 800; color: var(--vx-ink); letter-spacing: -0.02em; }
.vx-arrow { width: 44px; height: 44px; border-radius: 50%; background: var(--vx-sand); color: var(--vx-ink); display: flex; align-items: center; justify-content: center; transition: background .2s, color .2s; flex: none; }
.vx-arrow svg { width: 18px; height: 18px; }
.vx-card:hover .vx-arrow { background: var(--vx-accent-btn); color: #FFFFFF; }

/* ---------- Demo-Beispiele ---------- */
.vx-demos { display: grid; gap: 28px; }
@media (min-width: 900px) { .vx-demos { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.vx-demo { display: block; }
.vx-demo .vx-browser { transition: transform .25s, box-shadow .25s; box-shadow: var(--vx-shadow); }
.vx-demo:hover .vx-browser { transform: translateY(-4px); box-shadow: var(--vx-shadow-lg); }
.vx-demo__meta { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 16px; }
.vx-demo__meta strong { display: block; font-family: var(--vx-font-head); font-size: 19px; color: var(--vx-ink); letter-spacing: -0.02em; }
.vx-demo__meta span { font-size: 14px; }
.vx-demo__open { font-size: 14px; font-weight: 600; color: var(--vx-accent-text); white-space: nowrap; }
.vx-note { margin-top: 28px; font-size: 14px; color: var(--vx-muted); }
.vx-row-cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px 24px; margin-top: 44px; }

/* ---------- Demo-Angebot ---------- */
.vx-offer { background: var(--vx-accent-soft); border-radius: 24px; padding: 56px 28px; display: grid; gap: 44px; align-items: center; position: relative; overflow: hidden; }
@media (min-width: 960px) { .vx-offer { grid-template-columns: 1.1fr 1fr; padding: 72px 64px; } }
.vx-offer .vx-eyebrow { color: var(--vx-accent-text); }
.vx-offer p.vx-lead { color: #4E3A33; margin-bottom: 30px; }
.vx-offer__price { display: inline-flex; align-items: baseline; gap: 10px; margin-left: 18px; font-size: 15px; color: #4E3A33; }
.vx-offer__price strong { font-family: var(--vx-font-head); font-size: 28px; color: var(--vx-ink); }
.vx-steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.vx-step { background: #FFFFFF; border-radius: var(--vx-radius); padding: 22px 22px 22px 20px; display: flex; gap: 18px; align-items: flex-start; box-shadow: 0 1px 2px rgba(22,33,62,.05); }
.vx-step__num { width: 38px; height: 38px; border-radius: 50%; background: var(--vx-ink); color: #FFFFFF; font-family: var(--vx-font-head); font-weight: 800; font-size: 16px; display: flex; align-items: center; justify-content: center; flex: none; }
.vx-step strong { display: block; color: var(--vx-ink); font-size: 17px; margin-bottom: 2px; }
.vx-step span { font-size: 15px; line-height: 1.5; }

/* ---------- Video-Sektion (dunkel) ---------- */
.vx-split { display: grid; gap: 48px; align-items: center; }
@media (min-width: 960px) { .vx-split { grid-template-columns: 1fr 1fr; gap: 72px; } }
.vx-video { position: relative; border-radius: var(--vx-radius); overflow: hidden; background: #0D1428; box-shadow: 0 30px 60px -20px rgba(0,0,0,.5); }
.vx-video video { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }
.vx-play { position: absolute; top: 50%; left: 50%; width: 72px; height: 72px; margin: -36px 0 0 -36px; border-radius: 50%; border: 0; background: #FFFFFF; color: var(--vx-accent-btn); display: flex; align-items: center; justify-content: center; cursor: pointer; padding: 0 0 0 4px; box-shadow: 0 10px 24px rgba(0,0,0,.35); transition: transform .2s; }
.vx-play:hover { transform: scale(1.06); }
.vx-play.hidden { display: none; }
.vx-compare { margin-top: 28px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--vx-radius); overflow: hidden; font-size: 15px; }
.vx-compare__row { display: grid; grid-template-columns: 1.1fr 1fr 1fr; }
.vx-compare__row > div { padding: 14px 16px; }
.vx-compare__row + .vx-compare__row { border-top: 1px solid rgba(255,255,255,.1); }
.vx-compare__head { background: rgba(255,255,255,.05); font-size: 13px; font-weight: 600; color: #FFFFFF; }
.vx-compare__head div:last-child { color: #FF9A73; }
.vx-compare__row div:last-child { color: #FFFFFF; font-weight: 600; }
.vx-section--dark .vx-lead { color: #C9CFDC; }
.vx-section--dark p { color: #AEB6C7; }
.vx-kicker-note { margin-top: 18px; font-size: 14px; color: #8C95AA !important; }
@media (max-width: 520px) { .vx-compare { font-size: 14px; } .vx-compare__row > div { padding: 12px 10px; } }

/* ---------- Über mich ---------- */
.vx-about { display: grid; gap: 48px; align-items: center; }
@media (min-width: 960px) { .vx-about { grid-template-columns: .9fr 1.1fr; gap: 80px; } }
.vx-about__img { position: relative; }
.vx-about__img img { border-radius: 20px; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.vx-about__badge { position: absolute; left: 20px; bottom: 20px; right: 20px; background: rgba(255,255,255,.96); border-radius: 12px; padding: 14px 18px; font-size: 14px; color: var(--vx-ink); box-shadow: var(--vx-shadow); }
.vx-about__badge strong { display: block; font-size: 16px; }
.vx-about p { margin-bottom: 18px; }
.vx-list { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 16px; }
.vx-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 16px; }
.vx-list svg { width: 22px; height: 22px; color: var(--vx-accent); flex: none; margin-top: 2px; }
.vx-list strong { color: var(--vx-ink); }
.vx-honest { margin-top: 32px; padding: 20px 22px; border-left: 3px solid var(--vx-accent); background: var(--vx-sand); border-radius: 0 12px 12px 0; font-size: 15px; }
.vx-honest strong { color: var(--vx-ink); }

/* ---------- FAQ ---------- */
.vx-faq { max-width: 820px; margin: 0 auto; }
.vx-faq details { background: var(--vx-surface); border: 1px solid var(--vx-line); border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.vx-faq summary { list-style: none; cursor: pointer; padding: 22px 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-weight: 600; font-size: 17px; color: var(--vx-ink); }
.vx-faq summary::-webkit-details-marker { display: none; }
.vx-faq summary::after { content: "+"; font-size: 26px; font-weight: 400; line-height: 1; color: var(--vx-accent); transition: transform .2s; flex: none; }
.vx-faq details[open] summary::after { transform: rotate(45deg); }
.vx-faq details p { padding: 0 24px 22px; font-size: 16px; }

/* ---------- Abschluss-CTA ---------- */
.vx-cta { background: var(--vx-ink); border-radius: 24px; padding: 64px 28px; text-align: center; position: relative; overflow: hidden; }
.vx-cta::after { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; right: -140px; top: -180px; background: radial-gradient(circle, rgba(242,84,27,.35), rgba(242,84,27,0) 70%); pointer-events: none; }
.vx-cta h2 { color: #FFFFFF; font-size: clamp(30px, 4.4vw, 50px); max-width: 760px; margin: 0 auto 18px !important; position: relative; }
.vx-cta p { color: #C9CFDC; font-size: 18px; max-width: 560px; margin: 0 auto 34px; position: relative; }
.vx-cta__btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; position: relative; }
.vx-cta__small { margin-top: 22px !important; font-size: 14px !important; color: #8C95AA !important; }
.vx-cta__small { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; position: relative; }
.vx-cta__call { display: inline-flex; align-items: center; gap: 8px; color: #FFFFFF; font-weight: 600; font-size: 14px; padding: 9px 16px; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; transition: border-color .2s, background .2s; }
.vx-cta__call:hover { border-color: #FFFFFF; background: rgba(255,255,255,.06); }
.vx-cta__call svg { width: 16px; height: 16px; color: #FF9A73; }
@media (min-width: 900px) { .vx-cta { padding: 88px 64px; } }

/* ---------- Footer ---------- */
.vx-footer { background: var(--vx-ink); color: #AEB6C7; padding: 72px 0 36px; margin-top: 0; font-size: 15px; }
.vx-footer__grid { display: grid; gap: 40px; }
@media (min-width: 900px) { .vx-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.vx-footer .vx-logo { color: #FFFFFF; margin-bottom: 14px; }
.vx-footer h4 { color: #FFFFFF; font-family: var(--vx-font-body); font-size: 14px; font-weight: 600; letter-spacing: .02em; margin-bottom: 16px; }
.vx-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.vx-footer a:hover { color: #FFFFFF; }
.vx-footer .vx-footer__call { margin-bottom: 4px; }
.vx-footer .vx-footer__call svg { color: #FF9A73; }
.vx-footer__bottom { margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 13px; color: #8C95AA; }
.vx-footer__bottom a { text-decoration: underline; }

@media (max-width: 640px) {
  body.vx { font-size: 16px; }
  .vx-facts strong { font-size: 18px; }
  .vx-facts span { font-size: 13px; }
  .vx-section { padding: 72px 0; }
  .vx-hero__lead, .vx-lead { font-size: 17px; }
  .vx-btn { width: 100%; }
  .vx-hero__ctas { flex-direction: column; }
  .vx-offer__price { margin: 14px 0 0; display: flex; }
  .vx h1, .vx h2 { hyphens: auto; overflow-wrap: break-word; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .vx *, .vx *::before, .vx *::after { transition: none !important; }
}

.vx-skip { position: absolute; left: -9999px; top: 8px; z-index: 200; background: var(--vx-ink); color: #FFFFFF !important; padding: 10px 16px; border-radius: 8px; }
.vx-skip:focus { left: 8px; }

/* ============================================================
   Unterseiten-Bausteine
   ============================================================ */
.vx-page-hero { padding: 72px 0 64px; }
.vx-page-hero h1 { font-size: clamp(38px, 5.6vw, 64px); line-height: 1.04; letter-spacing: -0.035em; margin-bottom: 22px; max-width: 900px; }
.vx-page-hero .vx-hero__lead { max-width: 680px; }
.vx-page-hero .vx-checks { margin-bottom: 0; }
.vx-page-hero--split .vx-container { display: grid; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .vx-page-hero--split .vx-container { grid-template-columns: 1.05fr 1fr; } }

/* Feature-Raster */
.vx-features { display: grid; gap: 20px; }
@media (min-width: 700px) { .vx-features { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .vx-features { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.vx-feature { background: var(--vx-surface); border: 1px solid var(--vx-line); border-radius: var(--vx-radius); padding: 28px; }
.vx-section--white .vx-feature { background: var(--vx-bg); }
.vx-feature__icon { width: 46px; height: 46px; border-radius: 12px; background: var(--vx-accent-soft); color: var(--vx-accent-text); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.vx-feature__icon svg { width: 23px; height: 23px; }
.vx-feature h3 { font-size: 19px; margin-bottom: 8px; letter-spacing: -0.015em; }
.vx-feature p { font-size: 15.5px; line-height: 1.6; }
.vx-feature__price { margin-top: 18px; font-family: var(--vx-font-head); font-weight: 800; font-size: 22px; color: var(--vx-ink); }
.vx-features--2 { }
@media (min-width: 1024px) { .vx-features--2 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.vx-feature--hl { border: 2px solid var(--vx-accent); }

/* Vergleichstabelle (hell) */
.vx-table { width: 100%; border-collapse: separate; border-spacing: 0; background: var(--vx-surface); border: 1px solid var(--vx-line); border-radius: var(--vx-radius); overflow: hidden; font-size: 15.5px; }
.vx-table th { text-align: left; font-size: 13px; font-weight: 600; color: var(--vx-ink); background: var(--vx-sand); padding: 14px 20px; }
.vx-table th:last-child { color: var(--vx-accent-text); }
.vx-table td { padding: 18px 20px; vertical-align: top; border-top: 1px solid var(--vx-line); line-height: 1.5; }
.vx-table td:first-child { color: var(--vx-ink); font-weight: 600; width: 24%; }
.vx-table td:last-child { color: var(--vx-ink); font-weight: 600; background: #FFF8F4; }
@media (max-width: 720px) {
  .vx-table, .vx-table tbody, .vx-table tr, .vx-table td { display: block; width: 100% !important; }
  .vx-table thead { display: none; }
  .vx-table tr { border-top: 1px solid var(--vx-line); padding: 16px 18px; }
  .vx-table tr:first-child { border-top: 0; }
  .vx-table td { border: 0; padding: 4px 0; background: none !important; }
  .vx-table td:first-child { font-size: 16px; margin-bottom: 6px; }
  .vx-table td[data-label]::before { content: attr(data-label); display: block; font-size: 12px; font-weight: 600; color: var(--vx-muted); margin-top: 6px; }
  .vx-table td:last-child[data-label]::before { color: var(--vx-accent-text); }
}
.vx-fine { margin-top: 22px; font-size: 13.5px; line-height: 1.6; color: var(--vx-muted); max-width: 820px; }
.vx-fine a { text-decoration: underline; }

/* Pakete */
.vx-plans { display: grid; gap: 20px; align-items: stretch; }
@media (min-width: 760px) { .vx-plans { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1100px) { .vx-plans--3 { grid-template-columns: repeat(3, minmax(0,1fr)); } .vx-plans--4 { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.vx-plan { background: var(--vx-surface); border: 1px solid var(--vx-line); border-radius: 18px; padding: 30px 26px; display: flex; flex-direction: column; position: relative; }
.vx-plan--featured { border: 2px solid var(--vx-accent); box-shadow: var(--vx-shadow-lg); }
.vx-plan__badge { position: absolute; top: -13px; left: 24px; background: var(--vx-accent-btn); color: #FFFFFF; font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 999px; }
.vx-plan__name { font-size: 14px; font-weight: 700; color: var(--vx-accent-text); letter-spacing: .02em; margin-bottom: 14px; }
.vx-plan__old { font-size: 15px; color: var(--vx-muted); text-decoration: line-through; height: 22px; }
.vx-plan__price { font-family: var(--vx-font-head); font-weight: 800; font-size: 46px; line-height: 1; letter-spacing: -0.03em; color: var(--vx-ink); margin: 2px 0 8px; }
.vx-plan__price small { font-size: 22px; font-weight: 700; margin-left: 2px; }
.vx-plan__price--text { font-size: 34px; }
.vx-plan__sub { font-size: 15px; margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--vx-line); }
.vx-plan ul { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 11px; font-size: 15px; color: var(--vx-ink); }
.vx-plan li { display: flex; gap: 10px; align-items: flex-start; line-height: 1.45; }
.vx-plan li svg { width: 18px; height: 18px; color: var(--vx-accent); flex: none; margin-top: 2px; }
.vx-plan .vx-btn { margin-top: auto; width: 100%; }
.vx-plan--wide { display: grid; gap: 28px; margin-bottom: 20px; }
@media (min-width: 900px) { .vx-plan--wide { grid-template-columns: 1fr 1.3fr auto; align-items: center; } .vx-plan--wide ul { margin: 0; grid-template-columns: 1fr 1fr; } .vx-plan--wide .vx-plan__sub { border: 0; margin: 0; padding: 0; } .vx-plan--wide .vx-btn { width: auto; } }

/* Hinweis-Banner (z. B. Add-on) */
.vx-banner { margin-top: 20px; background: var(--vx-ink); color: #C9CFDC; border-radius: 18px; padding: 28px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px 32px; }
.vx-banner strong { display: block; color: #FFFFFF; font-size: 18px; margin-bottom: 4px; }
.vx-banner p { font-size: 15px; max-width: 640px; }
.vx-banner__price { font-family: var(--vx-font-head); font-weight: 800; font-size: 38px; color: #FFFFFF; white-space: nowrap; }

/* Showcase (Video + Poster) */
.vx-showcase video { width: 100%; aspect-ratio: 16 / 9; display: block; background: #0D1428; border-radius: var(--vx-radius); box-shadow: var(--vx-shadow-lg); }
.vx-thumbs { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; margin-top: 12px; }
.vx-thumbs a { border-radius: 10px; overflow: hidden; display: block; }
.vx-thumbs img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform .5s; }
.vx-thumbs a:hover img { transform: scale(1.05); }

/* Produkt-Strecke 01 → 03 */
.vx-strecke { display: grid; gap: 16px; align-items: center; }
@media (min-width: 800px) { .vx-strecke { grid-template-columns: 1fr auto 1fr auto 1fr; } }
.vx-strecke figure { margin: 0; background: var(--vx-surface); border: 1px solid var(--vx-line); border-radius: var(--vx-radius); overflow: hidden; }
.vx-strecke img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.vx-strecke figcaption { padding: 12px 16px; font-size: 14px; font-weight: 600; color: var(--vx-ink); display: flex; gap: 8px; align-items: center; }
.vx-strecke figcaption b { width: 24px; height: 24px; border-radius: 50%; background: var(--vx-sand); font-size: 12px; display: inline-flex; align-items: center; justify-content: center; }
.vx-strecke figure:last-child figcaption b { background: var(--vx-accent-btn); color: #FFFFFF; }
.vx-strecke__arrow { color: var(--vx-accent); font-size: 26px; text-align: center; }
@media (max-width: 799px) { .vx-strecke__arrow { transform: rotate(90deg); line-height: 1; } }

/* Preisliste (Preise-Seite) */
.vx-pricegroup { background: var(--vx-surface); border: 1px solid var(--vx-line); border-radius: 18px; padding: 8px 28px 12px; margin-bottom: 24px; }
.vx-pricegroup__head { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 0 18px; }
.vx-pricegroup__head h2 { font-size: 26px; display: flex; align-items: center; gap: 12px; }
.vx-pricegroup__head h2 span { width: 34px; height: 34px; border-radius: 10px; background: var(--vx-accent-soft); color: var(--vx-accent-text); font-size: 15px; display: inline-flex; align-items: center; justify-content: center; }
.vx-pricerow { display: flex; justify-content: space-between; align-items: center; gap: 12px 24px; padding: 18px 0; border-top: 1px solid var(--vx-line); }
.vx-pricerow strong { display: block; color: var(--vx-ink); font-size: 17px; }
.vx-pricerow span { font-size: 15px; }
.vx-pricerow__price { text-align: right; white-space: nowrap; }
.vx-pricerow__price s { color: var(--vx-muted); font-size: 14px; margin-right: 8px; }
.vx-pricerow__price b { font-family: var(--vx-font-head); font-weight: 800; font-size: 24px; color: var(--vx-ink); }
@media (max-width: 560px) { .vx-pricegroup { padding: 4px 18px 8px; } .vx-pricerow { flex-direction: column; align-items: flex-start; } .vx-pricerow__price { text-align: left; } }

/* Mini-CTA-Leiste am Seitenende von Abschnitten */
.vx-center { text-align: center; margin-top: 40px; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.vx-nav a[aria-current="page"] { opacity: 1; color: var(--vx-accent-text); }
.vx-nowrap { white-space: nowrap; }

/* ============ Unterseiten: Leistungen, Portfolio, Danke, Rechtliches ============ */
/* Leistungs-Karten */
.vx-services { display: grid; gap: 20px; }
@media (min-width: 960px) { .vx-services { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.vx-service { background: var(--vx-surface); border: 1px solid var(--vx-line); border-radius: var(--vx-radius); padding: 32px 28px; display: flex; flex-direction: column; }
.vx-service--featured { border: 2px solid var(--vx-accent); box-shadow: var(--vx-shadow); }
.vx-service__num { font-size: 13px; font-weight: 600; color: var(--vx-accent-text); margin-bottom: 12px; }
.vx-service h3 { font-size: 26px; letter-spacing: -0.03em; margin-bottom: 14px; }
.vx-service__price { font-family: var(--vx-font-head); font-weight: 800; font-size: 40px; letter-spacing: -0.04em; color: var(--vx-ink); line-height: 1; margin-bottom: 18px; }
.vx-service__price small { font-size: 15px; font-family: var(--vx-font-body); font-weight: 500; color: var(--vx-text); margin-right: 6px; letter-spacing: 0; }
.vx-service > p { margin-bottom: 22px; }
.vx-service ul { list-style: none; padding: 20px 0 0; margin: 0 0 28px; border-top: 1px solid var(--vx-line); display: grid; gap: 12px; }
.vx-service li { display: flex; gap: 10px; align-items: flex-start; color: var(--vx-ink); font-size: 15px; }
.vx-service li svg { width: 18px; height: 18px; flex: none; color: var(--vx-accent); margin-top: 2px; }
.vx-service .vx-btn { margin-top: auto; width: 100%; }

/* Portfolio: Filter */
.vx-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.vx-filter button { font: 600 15px/1 var(--vx-font-body); padding: 12px 18px; border-radius: 999px; border: 1px solid var(--vx-line); background: #FFFFFF; color: var(--vx-ink); cursor: pointer; transition: background .2s, color .2s, border-color .2s; }
.vx-filter button:hover { border-color: var(--vx-ink); }
.vx-filter button.is-active { background: var(--vx-ink); border-color: var(--vx-ink); color: #FFFFFF; }
.vx-subhead { font-size: 20px; letter-spacing: -0.02em; margin: 0 0 18px !important; }
.vx-subhead + * { margin-bottom: 0; }
.vx-subhead--gap { margin-top: 56px !important; }

/* Portfolio: Webdesign-Karten */
.vx-work { display: flex; flex-direction: column; gap: 16px; }
.vx-work__tag { font-size: 13px; font-weight: 600; color: var(--vx-accent-text); }
.vx-work h3 { font-size: 22px; letter-spacing: -0.02em; margin: 4px 0 8px !important; }
.vx-work p { font-size: 15px; }
.vx-work .vx-demo__open { margin-top: 12px; display: inline-block; }
.vx-exp-hidden { display: none !important; }
.vx-exp-open .vx-exp-hidden { display: flex !important; }
.vx-more { display: flex; justify-content: center; margin-top: 36px; }

/* Portfolio: Videos */
.vx-clips { display: grid; gap: 16px; }
@media (min-width: 768px) { .vx-clips { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1100px) { .vx-clips { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.vx-clips--v { grid-template-columns: repeat(2, minmax(0,1fr)); }
@media (min-width: 768px) { .vx-clips--v { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.voxluma-clip { position: relative; border-radius: 14px; overflow: hidden; background: #0D1428; cursor: pointer; aspect-ratio: 16 / 9; box-shadow: var(--vx-shadow); }
.vx-clips--v .voxluma-clip { aspect-ratio: 9 / 16; }
.voxluma-clip video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.clip-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,20,40,.85), rgba(13,20,40,0) 55%); opacity: .8; transition: opacity .3s; pointer-events: none; }
.clip-play-btn { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; transition: opacity .3s; pointer-events: none; }
.clip-play-btn > div { width: 60px; height: 60px; border-radius: 50%; background: var(--vx-accent-btn); color: #FFFFFF; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px -8px rgba(209,64,12,.7); transition: transform .2s; }
.clip-play-btn svg { width: 24px; height: 24px; margin-left: 3px; }
.voxluma-clip:hover .clip-play-btn > div { transform: scale(1.08); }
.clip-meta { position: absolute; left: 16px; right: 16px; bottom: 14px; color: #FFFFFF; transition: opacity .3s; pointer-events: none; }
.clip-meta span { font-size: 12px; font-weight: 600; letter-spacing: .04em; color: #FFC2A8; }
.clip-meta h3 { color: #FFFFFF; font-size: 19px; letter-spacing: -0.02em; margin-top: 2px !important; }
.clip-loading .clip-play-btn > div { animation: vxClipPulse .9s ease-in-out infinite; }
@keyframes vxClipPulse { 50% { opacity: .45; transform: scale(.92); } }

/* Portfolio: Produktbilder */
.vx-gallery { display: grid; gap: 14px; grid-template-columns: repeat(2, minmax(0,1fr)); }
@media (min-width: 900px) { .vx-gallery { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.vx-gallery__item { position: relative; border-radius: 14px; overflow: hidden; cursor: zoom-in; background: var(--vx-sand); border: 0; padding: 0; display: block; aspect-ratio: 1 / 1; }
.vx-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.vx-gallery__item:hover img { transform: scale(1.04); }
.vx-gallery__item span { position: absolute; left: 10px; bottom: 10px; background: rgba(255,255,255,.92); color: var(--vx-ink); font-size: 13px; font-weight: 600; padding: 6px 10px; border-radius: 999px; }
.vx-more-m { display: none; }

/* Mobil: Wisch-Streifen + gestapelte Produktbilder */
.vx-dots, .vx-swipe-hint { display: none; }
@media (max-width: 767px) {
  .vx-swipe { display: flex !important; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; gap: 12px; padding-bottom: 6px; margin-right: calc(-1 * 24px); padding-right: 24px; }
  .vx-swipe::-webkit-scrollbar { display: none; }
  .vx-swipe > * { flex: 0 0 85%; scroll-snap-align: start; }
  .vx-swipe.vx-clips--v > * { flex: 0 0 58%; }
  .vx-swipe-hint { display: block; font-size: 13px; font-weight: 600; color: var(--vx-muted); margin: -6px 0 12px; }
  .vx-dots { display: flex; justify-content: center; gap: 7px; margin-top: 14px; }
  .vx-dots span { width: 7px; height: 7px; border-radius: 50%; background: #D5CEC4; transition: background .2s, transform .2s; }
  .vx-dots span.is-active { background: var(--vx-accent); transform: scale(1.3); }
  .vx-stack .vx-m-hidden { display: none; }
  .vx-stack.vx-exp-open .vx-m-hidden { display: block; }
  .vx-more-m { display: flex; }
}

/* Lightbox */
.vx-lightbox { position: fixed; inset: 0; z-index: 10001; background: rgba(13,20,40,.94); display: none; align-items: center; justify-content: center; padding: 24px; cursor: zoom-out; overflow-y: auto; }
.vx-lightbox.is-open { display: flex; }
.vx-lightbox img { max-width: min(1100px, 100%); max-height: 92vh; width: auto; height: auto; border-radius: 12px; cursor: default; }
.vx-lightbox button { position: fixed; top: 16px; right: 16px; width: 48px; height: 48px; border-radius: 50%; border: 0; background: #FFFFFF; color: var(--vx-ink); font-size: 28px; line-height: 1; cursor: pointer; }

/* Danke-Seite */
.vx-success { text-align: center; padding: 88px 0 72px; }
.vx-success__icon { width: 76px; height: 76px; border-radius: 50%; background: var(--vx-accent-soft); color: var(--vx-accent-text); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 26px; }
.vx-success__icon svg { width: 36px; height: 36px; }
.vx-success h1 { font-size: clamp(36px, 5.4vw, 60px); line-height: 1.05; letter-spacing: -0.035em; margin: 14px auto 20px; max-width: 820px; }
.vx-success .vx-hero__lead { margin: 0 auto 32px; max-width: 620px; }
.vx-success .vx-hero__ctas { justify-content: center; }

/* Rechtliches */
.vx-legal { max-width: 780px; margin: 0 auto; background: var(--vx-surface); border: 1px solid var(--vx-line); border-radius: var(--vx-radius); padding: 40px 28px; color: var(--vx-text); font-size: 16px; line-height: 1.7; overflow-wrap: anywhere; }
@media (min-width: 760px) { .vx-legal { padding: 56px 56px; } }
.vx-legal__block + .vx-legal__block { margin-top: 44px; padding-top: 36px; border-top: 1px solid var(--vx-line); }
.vx-legal__h { display: block; hyphens: auto; overflow-wrap: break-word; font-size: 22px; letter-spacing: -0.02em; margin: 0 0 16px !important; }
.vx-legal__h span { display: inline-block; vertical-align: 4px; margin-right: 12px; font: 700 13px/1 var(--vx-font-body); color: var(--vx-accent-text); background: var(--vx-accent-soft); border-radius: 999px; padding: 7px 10px; letter-spacing: 0; }
.vx-legal h4 { font-family: var(--vx-font-body); font-size: 16px; font-weight: 700; color: var(--vx-ink); margin: 22px 0 6px !important; }
.vx-legal p + p, .vx-legal p + ul, .vx-legal ul + p, .vx-legal p + ol, .vx-legal ol + p { margin-top: 14px; }
.vx-legal ul, .vx-legal ol { padding-left: 1.4rem; margin: 12px 0; }
.vx-legal ul li { list-style: disc; margin-bottom: 6px; }
.vx-legal ol li { list-style: decimal; margin-bottom: 6px; }
.vx-legal strong { color: var(--vx-ink); font-weight: 600; }
.vx-legal a { color: var(--vx-accent-text); text-decoration: underline; text-underline-offset: 2px; }
.vx-legal small, .vx-legal .vx-legal__meta { font-size: 14px; color: var(--vx-muted); }
html { scroll-padding-top: 88px; }
