/*
 * Nexpell Hauptpage Hell
 * ========================
 * Zentrale Stylesheet-Datei des Templates. Alle Grundregeln und bisherigen
 * hellen Anpassungen befinden sich in dieser Datei.

 * Inhaltsverzeichnis
 * ------------------
 * [01] Design-Tokens und Grundflächen
 *      Zentrale Farben, Abstände und allgemeine Template-Oberflächen.
 * [02] Hero, Aktionen und Produktvorschau
 *      Einstieg, Buttons, Browserfenster, UI-Mockup und schwebende Hinweise.
 * [03] Inhaltsbereiche und Feature-Karten
 *      Abschnittsüberschriften, Leistungsraster und visuelle Feature-Elemente.
 * [04] Workflow und Editor-Vorschau
 *      Prozessschritte sowie Vorschauen für Bearbeiten und Veröffentlichen.
 * [05] Open Source, News und Abschlussbereiche
 *      Open-Source-Bereich, News-Magazin und vorbereitende CTA-Regeln.
 * [06] Responsive Verhalten und Animationen
 *      Breakpoints, reduzierte Bewegung und Bildstabilität.
 * [07] Vertrauen, Plattform- und Zielgruppenstreifen
 *      Trust-Elemente und horizontale Informationsleisten.
 * [08] Helle Tokens und globale Card-Steuerung
 *      Helle Farbwerte sowie Card-Zuordnungen für Bootstrap und Plugins.
 * [09] Helle Komponenten, Navigation und Footer-Basis
 *      Farbkorrekturen für Seitenkomponenten, Navigation und Footer.
 * [10] Tiefe und visuelle Hierarchie
 *      Schatten, Ebenen, Akzente und räumliche Feinabstimmung.
 * [11] Abschluss-CTA als Karte
 *      Aufbau, Dekoration und mobile Darstellung des CTA-Bereichs.
 * [12] Breiten, Plattformstreifen und Footer-Integration
 *      Widgetbreiten, Abschnittsabstände, dunkler Streifen und Footer.
 * [13] Desktop-Hero, Builder-Footer und Split-CTA
 *      Abschließende Spezialregeln für große Ansichten und Builder-Vorschau.
 * [14] Globales Button-System
 *      Einheitliche moderne Buttons für Frontend und Builder-Vorschau.
 * [15] Globale Seitenanzeige
 *      Dezente Pagination für Seitenzahlen, aktive Seiten und Navigation.
 */


/* ==========================================================================
   [01] Design-Tokens und Grundflächen
   Definiert die ursprünglichen Template-Werte und gemeinsame Seitenflächen.
   ========================================================================== */

:root {
  --nx-template-id: "nexpell_hauptpage_hell";
  --nx-cms-bg: #080b12;
  --nx-cms-surface: #10151f;
  --nx-cms-card: #141a25;
  --nx-cms-line: rgba(255, 255, 255, .09);
  --nx-cms-text: #f7f8fb;
  --nx-cms-muted: #aab2c0;
  --nx-cms-orange: var(--nx-color-primary, #f58220);
  --nx-cms-orange-2: #ffae4d;
  --nx-cms-green: #35c98b;
  --nx-cms-violet: #8e7cff;
}

html { scroll-behavior: smooth; }

.nx-cms-home,
.nx-cms-section,
.nx-cms-cta {
  color: var(--nx-cms-text);
  background: var(--nx-cms-bg);
}

.nx-cms-picture { display: contents; }

.nx-cms-home *,
.nx-cms-section *,
.nx-cms-cta * { box-sizing: border-box; }


/* ==========================================================================
   [02] Hero, Aktionen und Produktvorschau
   Gestaltet Einstieg, Buttons, Produktgrafik, Browserfenster und UI-Mockup.
   ========================================================================== */

.nx-cms-hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(5rem, 9vw, 8rem);
  background:
    radial-gradient(circle at 82% 24%, rgba(245, 130, 32, .13), transparent 27%),
    radial-gradient(circle at 18% 20%, rgba(92, 82, 255, .08), transparent 26%),
    linear-gradient(180deg, #090c13 0%, #0b0f17 100%);
}

.nx-cms-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(to bottom, #000, transparent 83%);
  content: "";
  pointer-events: none;
}

.nx-cms-hero__inner { position: relative; z-index: 2; padding-bottom: clamp(4rem, 8vw, 7rem); }

.nx-cms-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.nx-cms-orb--one {
  width: 480px;
  height: 480px;
  top: 4%;
  right: -260px;
  border: 1px solid rgba(245,130,32,.15);
  box-shadow: 0 0 120px rgba(245,130,32,.08) inset;
}

.nx-cms-orb--two {
  width: 240px;
  height: 240px;
  left: -140px;
  bottom: 80px;
  border: 1px solid rgba(142,124,255,.12);
}

.nx-cms-badge,
.nx-cms-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--nx-cms-orange-2);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.nx-cms-badge {
  margin-bottom: 1.5rem;
  padding: .55rem .8rem;
  color: #d9dde6;
  background: rgba(255,255,255,.045);
  border: 1px solid var(--nx-cms-line);
  border-radius: 999px;
  letter-spacing: .04em;
  text-transform: none;
}

.nx-cms-badge span {
  width: 7px;
  height: 7px;
  background: var(--nx-cms-green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(53,201,139,.12);
}

.nx-cms-hero h1 {
  max-width: 780px;
  margin: 0 0 1.35rem;
  color: #fff;
  font-size: clamp(3rem, 6.2vw, 6.2rem);
  font-weight: 850;
  letter-spacing: -.065em;
  line-height: .98;
}

.nx-cms-hero h1 em {
  display: inline-block;
  padding-right: .1em;
  margin-right: -.1em;
  color: transparent;
  background: linear-gradient(95deg, var(--nx-cms-orange) 5%, #ffba65 90%);
  -webkit-background-clip: text;
  background-clip: text;
  font-style: normal;
}

.nx-cms-lead {
  max-width: 650px;
  margin: 0;
  color: var(--nx-cms-muted);
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  line-height: 1.72;
}

.nx-cms-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }

.nx-cms-btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: .8rem 1.2rem;
  color: #fff;
  border: 1px solid transparent;
  border-radius: .6rem;
  font-size: .93rem;
  font-weight: 750;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.nx-cms-btn:hover { color: #fff; transform: translateY(-2px); }

.nx-cms-btn--primary {
  color: #17100a;
  background: linear-gradient(135deg, var(--nx-cms-orange-2), var(--nx-cms-orange));
  box-shadow: 0 12px 35px rgba(245,130,32,.23);
}

.nx-cms-btn--primary:hover { color: #17100a; box-shadow: 0 16px 42px rgba(245,130,32,.32); }
.nx-cms-btn--ghost { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.13); }
.nx-cms-btn--ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.22); }

.nx-cms-trust { display: flex; flex-wrap: wrap; gap: 1rem 1.25rem; margin-top: 1.55rem; color: #7f8999; font-size: .77rem; }
.nx-cms-trust i { margin-right: .3rem; color: var(--nx-cms-green); }

.nx-cms-product { position: relative; padding: 2.25rem 0 1.5rem 1.2rem; perspective: 1200px; }

.nx-cms-product__glow {
  position: absolute;
  width: 75%;
  height: 70%;
  right: 4%;
  bottom: 4%;
  background: rgba(245,130,32,.18);
  border-radius: 50%;
  filter: blur(90px);
}

.nx-cms-product-image {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: .85rem;
  box-shadow: 0 35px 90px rgba(0,0,0,.55);
  transform: rotateY(-4deg) rotateX(1deg);
}

.nx-cms-window {
  position: relative;
  overflow: hidden;
  background: #101620;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: .85rem;
  box-shadow: 0 35px 90px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.025) inset;
  transform: rotateY(-4deg) rotateX(1deg);
}

.nx-cms-window__top {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  padding: 0 .85rem;
  color: #667083;
  background: #171d28;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.nx-cms-dots { display: flex; gap: .32rem; }
.nx-cms-dots span { width: 7px; height: 7px; background: #424a59; border-radius: 50%; }
.nx-cms-address { width: 45%; padding: .35rem .7rem; color: #8d96a7; background: rgba(0,0,0,.18); border-radius: .3rem; font-size: .6rem; text-align: center; }
.nx-cms-address i { margin-right: .25rem; font-size: .5rem; }
.nx-cms-ui { display: grid; grid-template-columns: 56px 1fr; min-height: 390px; }

.nx-cms-ui aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
  padding: .9rem .5rem;
  background: #0d1119;
  border-right: 1px solid rgba(255,255,255,.06);
}

.nx-cms-ui aside > i { display: grid; width: 30px; height: 30px; place-items: center; color: #667083; border-radius: .35rem; font-size: .8rem; }
.nx-cms-ui aside > i.active { color: var(--nx-cms-orange-2); background: rgba(245,130,32,.13); }
.nx-cms-mini-logo { margin-bottom: .5rem; color: #fff; font-size: .95rem; font-weight: 900; }
.nx-cms-mini-logo span { color: var(--nx-cms-orange); }
.nx-cms-ui__main { padding: 1.15rem; }
.nx-cms-ui__bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.nx-cms-ui__bar strong { color: #e8ebf0; font-size: .8rem; }
.nx-cms-ui__bar button { padding: .4rem .65rem; color: #17100a; background: var(--nx-cms-orange); border: 0; border-radius: .3rem; font-size: .55rem; font-weight: 800; }
.nx-cms-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: .65rem; }

.nx-cms-metrics > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .15rem .45rem;
  padding: .75rem;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: .45rem;
}

.nx-cms-metrics i { grid-row: span 2; color: var(--nx-cms-orange); font-size: .75rem; }
.nx-cms-metrics span { color: #717b8d; font-size: .48rem; }
.nx-cms-metrics strong { color: #f1f3f6; font-size: .9rem; line-height: 1; }
.nx-cms-metrics small { grid-column: 2; color: var(--nx-cms-green); font-size: .45rem; }
.nx-cms-ui__grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: .65rem; margin-top: .65rem; }
.nx-cms-chart, .nx-cms-pages { min-height: 190px; padding: .8rem; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06); border-radius: .45rem; }
.nx-cms-card-head { display: flex; align-items: center; justify-content: space-between; color: #e4e8ee; font-size: .56rem; }
.nx-cms-card-head span { color: #697386; }
.nx-cms-bars { display: flex; height: 125px; align-items: end; gap: 5%; padding-top: 1rem; border-bottom: 1px solid rgba(255,255,255,.07); }
.nx-cms-bars i { flex: 1; height: 35%; background: linear-gradient(to top, rgba(245,130,32,.3), var(--nx-cms-orange)); border-radius: 2px 2px 0 0; }
.nx-cms-bars i:nth-child(2), .nx-cms-bars i:nth-child(7) { height: 53%; }
.nx-cms-bars i:nth-child(3), .nx-cms-bars i:nth-child(9) { height: 42%; }
.nx-cms-bars i:nth-child(4), .nx-cms-bars i:nth-child(10) { height: 72%; }
.nx-cms-bars i:nth-child(5), .nx-cms-bars i:nth-child(11) { height: 60%; }
.nx-cms-bars i:nth-child(6), .nx-cms-bars i:nth-child(12) { height: 86%; }
.nx-cms-pages p { display: grid; grid-template-columns: auto 1fr auto; gap: .4rem; align-items: center; margin: .8rem 0; color: #bdc4d0; font-size: .52rem; }
.nx-cms-pages p b { width: 6px; height: 6px; background: var(--nx-cms-green); border-radius: 50%; }
.nx-cms-pages p b.draft { background: #f2b84b; }
.nx-cms-pages p small { color: #6f7889; font-size: .43rem; }

.nx-cms-float {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .7rem .85rem;
  color: #dce1e8;
  background: rgba(20,26,37,.94);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: .55rem;
  box-shadow: 0 16px 35px rgba(0,0,0,.35);
  backdrop-filter: blur(16px);
}

.nx-cms-float > i { display: grid; width: 30px; height: 30px; place-items: center; color: #17100a; background: var(--nx-cms-orange); border-radius: .4rem; }
.nx-cms-float span { display: flex; flex-direction: column; color: #747f91; font-size: .52rem; }
.nx-cms-float strong { color: #f2f4f7; font-size: .7rem; }
.nx-cms-float--speed { top: 7%; right: -4%; }
.nx-cms-float--edit { bottom: -1%; left: -2%; }
.nx-cms-float--edit > i { color: var(--nx-cms-green); background: rgba(53,201,139,.14); }

.nx-cms-logo-strip { position: relative; z-index: 2; padding: 1.2rem 0; border-top: 1px solid var(--nx-cms-line);  }
.nx-cms-logo-strip .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2rem; }
.nx-cms-logo-strip span { color: #626c7d; font-size: .67rem; letter-spacing: .08em; text-transform: uppercase; }
.nx-cms-logo-strip strong { color: #777f8d; font-size: .82rem; letter-spacing: -.01em; }


/* ==========================================================================
   [03] Inhaltsbereiche und Feature-Karten
   Enthält Abschnittsaufbau, Feature-Raster und zugehörige Demonstrationen.
   ========================================================================== */

.nx-cms-section { position: relative; padding: clamp(5rem, 9vw, 8rem) 0; }
.nx-cms-heading { max-width: 760px; margin: 0 auto 3rem; text-align: center; }
.nx-cms-heading h2, .nx-cms-workflow h2, .nx-cms-open h2, .nx-cms-cta h2 {
  margin: .85rem 0 1rem;
  color: #fff;
  font-size: clamp(2.2rem, 4.3vw, 4rem);
  font-weight: 830;
  letter-spacing: -.05em;
  line-height: 1.06;
}
.nx-cms-heading p, .nx-cms-copy, .nx-cms-open__card p { color: var(--nx-cms-muted); font-size: 1.02rem; line-height: 1.75; }
.nx-cms-features { background: #0b0f16; }
.nx-cms-feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }

.nx-cms-feature {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  border: 1px solid var(--nx-cms-line);
  border-radius: .85rem;
}

.nx-cms-feature--large { min-height: 430px; }
.nx-cms-feature--wide { display: grid; grid-column: 1 / -1; grid-template-columns: .8fr 1.2fr; align-items: stretch; min-height: 350px; }
.nx-cms-feature__copy { position: relative; z-index: 2; padding: clamp(1.5rem, 3vw, 2.2rem); }
.nx-cms-icon { display: grid; width: 44px; height: 44px; place-items: center; margin-bottom: 1.2rem; color: #8ab4ff; background: rgba(75,132,255,.13); border: 1px solid rgba(99,151,255,.18); border-radius: .55rem; font-size: 1.15rem; }
.nx-cms-icon--orange { color: var(--nx-cms-orange-2); background: rgba(245,130,32,.12); border-color: rgba(245,130,32,.18); }
.nx-cms-icon--green { color: var(--nx-cms-green); background: rgba(53,201,139,.11); border-color: rgba(53,201,139,.18); }
.nx-cms-icon--violet { color: #a99cff; background: rgba(142,124,255,.12); border-color: rgba(142,124,255,.19); }
.nx-cms-icon--yellow { color: #f4c95d; background: rgba(244,201,93,.11); border-color: rgba(244,201,93,.18); }
.nx-cms-feature h3 { margin: 0 0 .7rem; color: #f5f6f8; font-size: 1.3rem; font-weight: 780; letter-spacing: -.02em; }
.nx-cms-feature__copy > p { max-width: 540px; margin-bottom: 0; color: #929baa; font-size: .93rem; line-height: 1.7; }

.nx-cms-builder-demo { position: absolute; right: -2rem; bottom: -1.5rem; width: 78%; overflow: hidden; background: #e9edf3; border: 1px solid rgba(255,255,255,.14); border-radius: .7rem 0 0 0; box-shadow: 0 22px 50px rgba(0,0,0,.3); }
.nx-cms-feature-image {
  display: block;
  width: calc(100% - 2rem);
  height: 210px;
  margin: auto 1rem 1rem;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: .65rem;
  box-shadow: 0 18px 38px rgba(0,0,0,.22);
}
.nx-cms-feature-image--wide { width: calc(100% - 1rem); height: 100%; min-height: 310px; margin: .5rem .5rem .5rem 0; }
.nx-cms-builder-toolbar { display: flex; height: 30px; align-items: center; gap: 4px; padding: 0 .55rem; background: #171c25; }
.nx-cms-builder-toolbar span { width: 5px; height: 5px; background: #555e6e; border-radius: 50%; }
.nx-cms-builder-toolbar b { margin-left: auto; color: #9099a8; font-size: .45rem; font-weight: 600; }
.nx-cms-builder-canvas { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; min-height: 190px; align-items: center; padding: 1.3rem; }
.nx-cms-builder-copy { display: flex; flex-direction: column; gap: .45rem; }
.nx-cms-builder-copy i { display: block; width: 95%; height: 7px; background: #aeb6c2; border-radius: 4px; }
.nx-cms-builder-copy i:first-child { width: 58%; height: 17px; background: #272e39; }
.nx-cms-builder-copy i:nth-child(3) { width: 74%; }
.nx-cms-builder-copy button { width: 58px; height: 20px; margin-top: .35rem; background: var(--nx-cms-orange); border: 0; border-radius: 3px; }
.nx-cms-builder-image { display: grid; min-height: 145px; place-items: center; color: #9099a7; background: linear-gradient(145deg, #d8dde5, #bfc7d3); border-radius: .4rem; font-size: 2rem; }
.nx-cms-cursor { position: absolute; right: 44%; bottom: 19%; color: #202631; font-size: 1rem; }
.nx-cms-cursor span { position: absolute; top: 15px; left: 12px; padding: .15rem .35rem; color: #fff; background: #7566ec; border-radius: 2px; font-size: .42rem; }
.nx-cms-plugin-row { display: flex; gap: .65rem; margin-top: 2rem; }
.nx-cms-plugin-row i { display: grid; width: 46px; height: 46px; place-items: center; color: #8993a3; background: #0d1119; border: 1px solid rgba(255,255,255,.08); border-radius: .5rem; }
.nx-cms-plugin-row i:first-child { color: var(--nx-cms-orange-2); border-color: rgba(245,130,32,.22); }
.nx-cms-security { display: flex; align-items: center; gap: .9rem; margin-top: 2rem; padding: .85rem; background: rgba(53,201,139,.055); border: 1px solid rgba(53,201,139,.14); border-radius: .6rem; }
.nx-cms-security > div { display: grid; width: 42px; height: 42px; place-items: center; color: var(--nx-cms-green); background: rgba(53,201,139,.13); border-radius: 50%; }
.nx-cms-security span { display: flex; flex-direction: column; color: #dce4e1; font-size: .78rem; font-weight: 700; }
.nx-cms-security small { margin-top: .15rem; color: #6e837d; font-size: .55rem; font-weight: 500; }
.nx-cms-performance { display: grid; grid-template-columns: 92px 1fr; gap: 1.1rem; align-items: center; margin-top: 1.8rem; padding: 1rem; background: rgba(244,201,93,.045); border: 1px solid rgba(244,201,93,.12); border-radius: .6rem; }
.nx-cms-performance__score { position: relative; display: flex; width: 78px; height: 78px; flex-direction: column; align-items: center; justify-content: center; background: conic-gradient(#f4c95d 98%, rgba(255,255,255,.08) 0); border-radius: 50%; box-shadow: 0 0 30px rgba(244,201,93,.08); }
.nx-cms-performance__score::before { position: absolute; width: 64px; height: 64px; background: #151a24; border-radius: 50%; content: ""; }
.nx-cms-performance__score strong, .nx-cms-performance__score span { position: relative; z-index: 1; }
.nx-cms-performance__score strong { color: #fff; font-size: 1.25rem; line-height: 1; }
.nx-cms-performance__score span { margin-top: .2rem; color: #8993a2; font-size: .42rem; }
.nx-cms-performance__bars p { margin: 0 0 .65rem; }
.nx-cms-performance__bars p:last-child { margin-bottom: 0; }
.nx-cms-performance__bars span { display: block; margin-bottom: .28rem; color: #9ba4b2; font-size: .52rem; }
.nx-cms-performance__bars i { display: block; height: 4px; overflow: hidden; background: rgba(255,255,255,.07); border-radius: 99px; }
.nx-cms-performance__bars b { display: block; height: 100%; background: linear-gradient(90deg, #d6a82f, #f4c95d); border-radius: inherit; }
.nx-cms-theme-stack { position: relative; min-height: 245px; }
.nx-cms-theme { position: absolute; width: 70%; height: 205px; padding: 1.2rem; background: #edf0f5; border-radius: .55rem; box-shadow: 0 20px 45px rgba(0,0,0,.3); }
.nx-cms-theme span { display: block; width: 45%; height: 13px; margin-bottom: 1rem; background: #252b35; border-radius: 3px; }
.nx-cms-theme i { display: block; width: 80%; height: 7px; margin: .4rem 0; background: #bcc3ce; border-radius: 4px; }
.nx-cms-theme button { width: 55px; height: 22px; margin-top: .8rem; background: var(--nx-cms-orange); border: 0; border-radius: 3px; }
.nx-cms-theme--back { top: 0; right: 2%; opacity: .38; transform: rotate(6deg); }
.nx-cms-theme--front { left: 5%; bottom: 0; background: linear-gradient(135deg, #eff2f6 60%, #dde4ec); transform: rotate(-2deg); }
.nx-cms-swatches { position: absolute; right: 3%; bottom: 1.2rem; display: flex; gap: .35rem; padding: .5rem; background: #171d27; border: 1px solid rgba(255,255,255,.12); border-radius: .4rem; box-shadow: 0 12px 25px rgba(0,0,0,.3); }
.nx-cms-swatches b { width: 17px; height: 17px; background: var(--nx-cms-orange); border-radius: 50%; }
.nx-cms-swatches b:nth-child(2) { background: #7566ec; }
.nx-cms-swatches b:nth-child(3) { background: #35c98b; }
.nx-cms-swatches b:nth-child(4) { background: #e7eaf0; }


/* ==========================================================================
   [04] Workflow und Editor-Vorschau
   Steuert Arbeitsschritte, Editoransichten sowie Inhalts- und Geräte-Vorschauen.
   ========================================================================== */

.nx-cms-workflow { overflow: hidden; background: #080b11; }
.nx-cms-workflow::after { position: absolute; width: 500px; height: 500px; right: -280px; top: 10%; background: rgba(142,124,255,.08); border-radius: 50%; filter: blur(80px); content: ""; }
.nx-cms-steps { margin-top: 2.2rem; }
.nx-cms-steps > button { display: flex; width: 100%; gap: 1rem; align-items: center; padding: 1rem 0; color: #687284; background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.07); text-align: left; cursor: pointer; transition: padding-left .2s ease, background .2s ease; }
.nx-cms-steps > button:hover { padding-left: .45rem; background: linear-gradient(90deg, rgba(245,130,32,.06), transparent); }
.nx-cms-steps > button:focus-visible { outline: 2px solid var(--nx-cms-orange); outline-offset: 4px; }
.nx-cms-steps > button > span { display: grid; width: 34px; height: 34px; flex: 0 0 34px; place-items: center; color: #717b8d; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 50%; font-size: .62rem; font-weight: 800; transition: color .2s ease, background .2s ease, border-color .2s ease; }
.nx-cms-steps > button.active > span { color: #17100a; background: var(--nx-cms-orange); border-color: var(--nx-cms-orange); box-shadow: 0 0 0 5px rgba(245,130,32,.09); }
.nx-cms-steps > button > i { margin-left: auto; color: #4f5868; font-size: .7rem; transition: color .2s ease, transform .2s ease; }
.nx-cms-steps > button.active > i { color: var(--nx-cms-orange); transform: translateX(3px); }
.nx-cms-steps p { display: flex; flex-direction: column; margin: 0; }
.nx-cms-steps strong { color: #dfe3e9; font-size: .88rem; }
.nx-cms-steps small { margin-top: .25rem; color: #757f90; font-size: .72rem; }
.nx-cms-editor { position: relative; z-index: 2; overflow: hidden; background: #121823; border: 1px solid rgba(255,255,255,.12); border-radius: .8rem; box-shadow: 0 30px 80px rgba(0,0,0,.48); transform: rotate(1deg); }
.nx-cms-editor[hidden] { display: none !important; }
.nx-cms-editor.active { animation: nxCmsPanelIn .35s ease both; }
.nx-cms-workflow-image { display: block; width: 100%; height: auto; aspect-ratio: 1672 / 941; object-fit: contain; }
.nx-cms-editor__top { display: flex; min-height: 44px; align-items: center; justify-content: space-between; padding: 0 .8rem; background: #1a202b; border-bottom: 1px solid rgba(255,255,255,.07); }
.nx-cms-editor__top > div { display: flex; gap: 4px; }
.nx-cms-editor__top i { width: 6px; height: 6px; background: #4a5260; border-radius: 50%; }
.nx-cms-editor__top span { color: #8c96a7; font-size: .58rem; }
.nx-cms-editor__top button { padding: .35rem .65rem; color: #17100a; background: var(--nx-cms-orange); border: 0; border-radius: .3rem; font-size: .5rem; font-weight: 800; }
.nx-cms-editor__body { display: grid; grid-template-columns: 115px 1fr; min-height: 420px; }
.nx-cms-editor__body aside { display: flex; flex-direction: column; gap: .45rem; padding: 1rem .65rem; background: #0e131c; border-right: 1px solid rgba(255,255,255,.06); }
.nx-cms-editor__body aside strong { margin-bottom: .35rem; color: #8e98a9; font-size: .55rem; }
.nx-cms-editor__body aside span { padding: .55rem .45rem; color: #737e8f; background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.05); border-radius: .3rem; font-size: .47rem; }
.nx-cms-editor__body aside i { margin-right: .3rem; color: var(--nx-cms-orange); }
.nx-cms-editor__canvas { padding: 1.5rem; background: #dfe4ea; }
.nx-cms-editor-hero { position: relative; min-height: 240px; padding: 2.2rem 1.8rem; color: #fff; background: radial-gradient(circle at 80% 20%, rgba(245,130,32,.45), transparent 28%), linear-gradient(135deg, #191f2a, #090d13); border: 2px solid var(--nx-cms-orange); border-radius: .4rem; }
.nx-cms-editor-hero small { color: var(--nx-cms-orange-2); font-size: .45rem; letter-spacing: .1em; }
.nx-cms-editor-hero strong { display: block; width: 75%; margin: .6rem 0; font-size: clamp(1.2rem, 2.4vw, 2rem); line-height: 1.05; }
.nx-cms-editor-hero p { color: #9da6b5; font-size: .58rem; }
.nx-cms-editor-hero button { padding: .45rem .65rem; color: #17100a; background: var(--nx-cms-orange); border: 0; border-radius: 3px; font-size: .5rem; font-weight: 800; }
.nx-cms-editor-hero b { position: absolute; top: -17px; left: 50%; padding: .22rem .5rem; color: #17100a; background: var(--nx-cms-orange); border-radius: 3px 3px 0 0; font-size: .42rem; transform: translateX(-50%); }
.nx-cms-editor-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; margin-top: .8rem; }
.nx-cms-editor-cards i { height: 70px; background: #f7f8fa; border: 1px solid #ccd2db; border-radius: .35rem; }
.nx-cms-content-preview { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; min-height: 420px; padding: 1.5rem; gap: 1.2rem; align-items: center; background: #e3e7ed; }
.nx-cms-content-preview__image { position: relative; display: flex; min-height: 310px; flex-direction: column; align-items: center; justify-content: center; color: #6d7786; background: radial-gradient(circle at 70% 25%, rgba(245,130,32,.35), transparent 26%), linear-gradient(145deg, #c9d1dc, #aeb9c8); border: 2px solid var(--nx-cms-orange); border-radius: .45rem; }
.nx-cms-content-preview__image > i { font-size: 2.4rem; }
.nx-cms-content-preview__image > span { margin-top: .5rem; font-size: .65rem; font-weight: 700; }
.nx-cms-content-preview__image > b { position: absolute; top: -18px; left: 50%; padding: .28rem .55rem; color: #211307; background: var(--nx-cms-orange); border-radius: 3px 3px 0 0; font-size: .44rem; transform: translateX(-50%); }
.nx-cms-content-preview__copy small { color: #cc6817; font-size: .48rem; font-weight: 800; letter-spacing: .1em; }
.nx-cms-content-preview__copy strong { display: block; margin: .6rem 0; color: #202630; font-size: clamp(1.25rem, 2.5vw, 2rem); line-height: 1.05; }
.nx-cms-content-preview__copy p { color: #657080; font-size: .65rem; line-height: 1.65; }
.nx-cms-content-preview__copy button { padding: .5rem .7rem; color: #fff; background: #171d27; border: 0; border-radius: 3px; font-size: .5rem; font-weight: 750; }
.nx-cms-content-toolbar { position: absolute; bottom: 1rem; left: 1rem; display: flex; gap: .25rem; padding: .35rem; color: #d8dde4; background: #171d27; border-radius: .35rem; box-shadow: 0 8px 20px rgba(0,0,0,.2); }
.nx-cms-content-toolbar i { display: grid; width: 24px; height: 24px; place-items: center; font-size: .55rem; }
.nx-cms-publish-preview { min-height: 420px; padding: 1.5rem; background: linear-gradient(145deg, #eef1f5, #dfe5ec); }
.nx-cms-publish-preview__status { display: flex; align-items: center; gap: .8rem; padding: 1rem; color: #27322e; background: #fff; border: 1px solid #d4dde0; border-radius: .5rem; box-shadow: 0 8px 20px rgba(35,48,58,.06); }
.nx-cms-publish-preview__status > i { display: grid; width: 38px; height: 38px; place-items: center; color: #158f5f; background: #e2f6ed; border-radius: 50%; font-size: 1.15rem; }
.nx-cms-publish-preview__status span { display: flex; flex-direction: column; font-size: .58rem; color: #718078; }
.nx-cms-publish-preview__status strong { margin-bottom: .15rem; color: #27322e; font-size: .76rem; }
.nx-cms-publish-preview__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 1rem; align-items: center; margin: 1rem 0; }
.nx-cms-publish-checks p { display: flex; gap: .65rem; align-items: center; margin: 0 0 .6rem; padding: .7rem; background: rgba(255,255,255,.62); border: 1px solid #d5dce4; border-radius: .4rem; }
.nx-cms-publish-checks > p > i { display: grid; width: 25px; height: 25px; flex: 0 0 25px; place-items: center; color: #17875d; background: #dff4ea; border-radius: 50%; font-size: .65rem; }
.nx-cms-publish-checks span { display: flex; flex-direction: column; }
.nx-cms-publish-checks strong { color: #303741; font-size: .62rem; }
.nx-cms-publish-checks small { color: #77818d; font-size: .48rem; }
.nx-cms-devices { position: relative; min-height: 210px; }
.nx-cms-device { position: absolute; overflow: hidden; background: #fff; border: 6px solid #222a35; box-shadow: 0 14px 30px rgba(33,42,53,.22); }
.nx-cms-device span { display: block; height: 35%; background: radial-gradient(circle at 75% 30%, rgba(245,130,32,.55), transparent 28%), #141a23; }
.nx-cms-device i { display: block; width: 62%; height: 6px; margin: 10px; background: #aeb7c3; border-radius: 4px; }
.nx-cms-device i:nth-child(3) { width: 42%; }
.nx-cms-device button { width: 34px; height: 12px; margin: 0 10px; background: var(--nx-cms-orange); border: 0; border-radius: 2px; }
.nx-cms-device--desktop { width: 90%; height: 180px; top: 5px; left: 0; border-width: 7px 7px 14px; border-radius: .35rem; }
.nx-cms-device--phone { width: 58px; height: 120px; right: 0; bottom: 0; border-width: 5px; border-radius: .55rem; }
.nx-cms-device--phone i { width: 70%; height: 4px; margin: 6px; }
.nx-cms-publish-url { display: flex; align-items: center; gap: .65rem; padding: .75rem; background: #fff; border: 1px solid #d5dce4; border-radius: .45rem; }
.nx-cms-publish-url > i { color: #627082; }
.nx-cms-publish-url span { display: flex; flex-direction: column; }
.nx-cms-publish-url small { color: #89929e; font-size: .45rem; }
.nx-cms-publish-url strong { color: #303741; font-size: .62rem; }
.nx-cms-publish-url b { margin-left: auto; padding: .25rem .5rem; color: #137b55; background: #ddf4e9; border-radius: 99px; font-size: .48rem; }

@keyframes nxCmsPanelIn {
  from { opacity: 0; transform: rotate(1deg) translateY(10px); }
  to { opacity: 1; transform: rotate(1deg) translateY(0); }
}


/* ==========================================================================
   [05] Open Source, News und Abschlussbereiche
   Formatiert Open-Source-Inhalte, News-Widgets und grundlegende CTA-Bausteine.
   ========================================================================== */

.nx-cms-open { padding-top: 1rem; background: #080b11; }
.nx-cms-news-intro {
  position: relative;
  padding: clamp(5rem, 8vw, 7rem) 0 1.8rem;
  color: var(--nx-cms-text);
  background: #0b0f16;
  border-top: 1px solid rgba(255,255,255,.06);
}
.nx-cms-news-intro__heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; }
.nx-cms-news-intro h2 { margin: .8rem 0 .65rem; color: #fff; font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 830; letter-spacing: -.05em; line-height: 1.08; }
.nx-cms-news-intro p { margin: 0; color: var(--nx-cms-muted); font-size: .98rem; }
.nx-cms-news-intro a { display: inline-flex; flex: 0 0 auto; align-items: center; gap: .55rem; padding: .75rem 1rem; color: #17100a; background: var(--nx-cms-orange); border-radius: .55rem; font-size: .82rem; font-weight: 800; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.nx-cms-news-intro a:hover { color: #17100a; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(245,130,32,.2); }
.nx-cms-news-widget {
  margin: 0;
  padding: 0 0 clamp(5rem, 8vw, 7rem);
  color: var(--nx-cms-text);
  background: #0b0f16;
}
.nx-cms-news-widget > .container,
.nx-cms-news-widget .container {
  width: 100%;
  max-width: 1320px;
}
.nx-cms-news-widget .news-magazine-widget,
[data-nx-key="widget_news_magazine"] .news-magazine-widget {
  width: min(calc(100% - clamp(1.25rem, 4vw, 3rem)), 1296px) !important;
  max-width: 1296px !important;
  margin-inline: auto !important;
}
.nx-cms-news-widget .news-magazine-widget__layout,
[data-nx-key="widget_news_magazine"] .news-magazine-widget__layout {
  gap: 1rem;
}
.nx-cms-news-widget .news-magazine-widget__featured,
.nx-cms-news-widget .news-magazine-widget__item,
[data-nx-key="widget_news_magazine"] .news-magazine-widget__featured,
[data-nx-key="widget_news_magazine"] .news-magazine-widget__item {
  border-radius: .85rem !important;
}
.nx-cms-news-widget .news-magazine-widget__featured img,
.nx-cms-news-widget .news-magazine-widget__thumb,
.nx-cms-news-widget .news-magazine-widget__thumb img,
[data-nx-key="widget_news_magazine"] .news-magazine-widget__featured img,
[data-nx-key="widget_news_magazine"] .news-magazine-widget__thumb,
[data-nx-key="widget_news_magazine"] .news-magazine-widget__thumb img {
  border-radius: inherit !important;
}
.nx-cms-news-widget .news-widget-empty,
[data-nx-key="widget_news_magazine"] .news-widget-empty {
  width: min(calc(100% - clamp(1.25rem, 4vw, 3rem)), 1296px) !important;
  max-width: 1296px !important;
  border-radius: .85rem !important;
}
.nx-cms-news-widget .card,
.nx-cms-news-widget article {
  overflow: hidden;
  color: var(--nx-cms-text);
  background: linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border-color: rgba(255,255,255,.09);
  border-radius: .85rem !important;
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
}
.nx-cms-news-widget .card-img,
.nx-cms-news-widget .card-img-top,
.nx-cms-news-widget article img {
  border-radius: .85rem .85rem 0 0;
}
.nx-cms-news-widget .row > [class*="col"] > .card,
.nx-cms-news-widget .row > [class*="col"] > article {
  height: 100%;
}
.nx-cms-news-widget h2,
.nx-cms-news-widget h3,
.nx-cms-news-widget h4,
.nx-cms-news-widget .card-title { color: #fff; }
.nx-cms-news-widget p,
.nx-cms-news-widget .text-muted { color: var(--nx-cms-muted) !important; }
.nx-cms-news-widget a { color: var(--nx-cms-orange-2); }
.nx-cms-open__card { position: relative; overflow: hidden; padding: clamp(2rem, 5vw, 4rem); background: linear-gradient(135deg, #121822, #0c1018); border: 1px solid var(--nx-cms-line); border-radius: 1rem; }
.nx-cms-open__card::before { position: absolute; width: 400px; height: 400px; left: -220px; bottom: -300px; background: rgba(245,130,32,.18); border-radius: 50%; filter: blur(60px); content: ""; }
.nx-cms-open__points { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.8rem; }
.nx-cms-open__points span { display: flex; align-items: center; gap: .45rem; padding: .55rem .7rem; color: #cdd3dc; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: .4rem; font-size: .72rem; }
.nx-cms-open__points i { color: var(--nx-cms-orange); }
.nx-cms-open__image { display: block; width: 100%; height: auto; border: 1px solid rgba(255,255,255,.1); border-radius: .85rem; box-shadow: 0 25px 60px rgba(0,0,0,.18); }

.nx-cms-cta { position: relative; overflow: hidden; padding: clamp(5rem, 9vw, 8rem) 0; text-align: center; background: linear-gradient(135deg, #ed7615 0%, #f58a2d 52%, #ff9f3e 100%); }
.nx-cms-cta::before { position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.18) 1px, transparent 1px); background-size: 24px 24px; mask-image: linear-gradient(90deg, transparent, #000, transparent); content: ""; }
.nx-cms-cta__orb { position: absolute; width: 520px; height: 520px; top: -380px; left: 50%; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; transform: translateX(-50%); }
.nx-cms-cta .container { position: relative; z-index: 2; }
.nx-cms-cta .nx-cms-eyebrow { color: rgba(30,17,6,.72); }
.nx-cms-cta h2 { color: #17100a; }
.nx-cms-cta p { max-width: 620px; margin: 0 auto; color: rgba(42,25,10,.72); font-size: 1.05rem; line-height: 1.7; }
.nx-cms-actions--center { justify-content: center; }
.nx-cms-btn--light { color: #fff; background: #121720; box-shadow: 0 14px 30px rgba(61,29,4,.2); }
.nx-cms-btn--outline-light { color: #261506; border-color: rgba(38,21,6,.28); }
.nx-cms-btn--outline-light:hover { color: #261506; background: rgba(255,255,255,.16); }
.nx-cms-cta > .container > small { display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem 1rem; margin-top: 1.5rem; color: rgba(42,25,10,.62); font-size: .7rem; }
.nx-cms-cta__picture, .nx-cms-cta__image { display: block; width: 100%; }
.nx-cms-cta__image { height: auto; }


/* ==========================================================================
   [06] Responsive Verhalten und Animationen
   Bündelt Breakpoints, Bewegungen und Maßnahmen gegen Layoutsprünge.
   ========================================================================== */

@media (max-width: 991.98px) {
  .nx-cms-product { max-width: 760px; margin: 1rem auto 0; padding-left: 0; }
  .nx-cms-feature--wide { grid-template-columns: 1fr; }
  .nx-cms-feature-image--wide { width: calc(100% - 2rem); height: 240px; min-height: 0; margin: 0 1rem 1rem; }
  .nx-cms-theme-stack { min-height: 270px; }
  .nx-cms-editor { margin-top: 1rem; transform: none; }
}

@media (max-width: 767.98px) {
  .nx-cms-hero { padding-top: 4rem; }
  .nx-cms-feature-grid { grid-template-columns: 1fr; }
  .nx-cms-feature--wide { grid-column: auto; }
  .nx-cms-window, .nx-cms-product-image { transform: none; }
  .nx-cms-float--speed { top: 0; right: 0; }
  .nx-cms-float--edit { left: .3rem; }
  .nx-cms-ui { grid-template-columns: 42px 1fr; min-height: 330px; }
  .nx-cms-ui aside { padding-inline: .3rem; }
  .nx-cms-ui aside > i { width: 26px; height: 26px; }
  .nx-cms-ui__main { padding: .7rem; }
  .nx-cms-ui__grid { grid-template-columns: 1fr; }
  .nx-cms-pages { display: none; }
  .nx-cms-metrics > div { padding: .55rem; }
  .nx-cms-metrics i { display: none; }
  .nx-cms-metrics span, .nx-cms-metrics strong, .nx-cms-metrics small { grid-column: 1; }
  .nx-cms-logo-strip .container { justify-content: center; }
  .nx-cms-logo-strip span { width: 100%; text-align: center; }
  .nx-cms-editor__body { grid-template-columns: 1fr; }
  .nx-cms-editor__body aside { display: none; }
  .nx-cms-content-preview { grid-template-columns: 1fr; }
  .nx-cms-content-preview__image { min-height: 190px; }
  .nx-cms-publish-preview__grid { grid-template-columns: 1fr; }
  .nx-cms-devices { display: none; }
  .nx-cms-news-intro__heading { align-items: flex-start; flex-direction: column; }
  .nx-cms-news-widget .news-magazine-widget,
  [data-nx-key="widget_news_magazine"] .news-magazine-widget {
    width: min(calc(100% - 1rem), 1296px) !important;
  }
}

@media (max-width: 575.98px) {
  .nx-cms-hero h1 { font-size: clamp(2.8rem, 15vw, 4rem); }
  .nx-cms-actions :is(.btn, .nx-cms-btn) { width: 100%; }
  .nx-cms-product { margin-inline: -.35rem; }
  .nx-cms-float { display: none; }
  .nx-cms-builder-demo { width: 90%; }
  .nx-cms-theme { width: 88%; }
  .nx-cms-open__points { flex-direction: column; align-items: stretch; }
  .nx-cms-open__points span { justify-content: center; }
}

@media (prefers-reduced-motion: no-preference) {
  .nx-cms-window, .nx-cms-product-image { animation: nxCmsFloat 7s ease-in-out infinite; }
  .nx-cms-float--speed { animation: nxCmsFloatSmall 5s ease-in-out infinite; }
  @keyframes nxCmsFloat {
    0%, 100% { transform: rotateY(-4deg) rotateX(1deg) translateY(0); }
    50% { transform: rotateY(-4deg) rotateX(1deg) translateY(-8px); }
  }
  @keyframes nxCmsFloatSmall {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }
}

/* Keep the LCP image stable and avoid continuous compositing on small screens. */
@media (max-width: 767.98px) {
  .nx-cms-window,
  .nx-cms-product-image {
    animation: none;
    transform: none;
  }
}

/* Keep the wide feature layout stable when responsive images use a picture wrapper. */
@media (min-width: 992px) {
  .nx-cms-feature--wide {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
  }

  .nx-cms-feature--wide > .nx-cms-feature__copy {
    grid-column: 1;
    grid-row: 1;
  }

  .nx-cms-feature--wide > .nx-cms-picture {
    display: block;
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    height: 100%;
  }

  .nx-cms-feature--wide > .nx-cms-picture > .nx-cms-feature-image--wide {
    display: block;
  }
}

/* Balanced desktop proportions for the feature cards. */
@media (min-width: 992px) {
  .nx-cms-feature:not(.nx-cms-feature--wide) .nx-cms-feature-image {
    height: 250px;
  }

  .nx-cms-feature--wide {
    grid-template-columns: 1fr 1fr;
    min-height: 380px;
  }

  .nx-cms-feature--wide > .nx-cms-feature__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .nx-cms-feature--wide > .nx-cms-picture {
    max-height: 480px;
    overflow: hidden;
  }

  .nx-cms-feature--wide > .nx-cms-picture > .nx-cms-feature-image--wide {
    width: calc(100% - .75rem);
    height: calc(100% - 1rem);
    min-height: 0;
    margin: .5rem .5rem .5rem .25rem;
    object-fit: cover;
  }
}












/* ==========================================================================
   [07] Vertrauen, Plattform- und Zielgruppenstreifen
   Ordnet Trust-Signale und horizontale Informationsleisten der Startseite.
   ========================================================================== */

.nx-cms-trust{
    display:flex;
    flex-wrap:wrap;
    gap:1.5rem;
    align-items:center;
}

.nx-cms-trust span{
    display:flex;
    align-items:center;
    gap:.55rem;

    color:#4b5563;
    font-size:.95rem;
    font-weight:500;
}

.nx-cms-trust i{
    color:var(--bs-primary);   /* Nexpell Orange */
    font-size:1.1rem;          /* gleiche Größe wie Feature-Icons */
    line-height:1;
}

.nx-cms-trust .flag{
    font-size:1rem;
    line-height:1;
}






.nx-feature-strip {
    background: #111318;
    border-radius: 16px;
    padding: 18px 24px;
    margin: 40px 0;
    box-shadow: 0 20px 50px rgba(0,0,0,.18);
}

.nx-feature-strip .row{
    align-items:center;
}

.nx-cms-strip{
    background:#111318;
    margin:0;
    padding:0;
    border-top:1px solid rgba(255,255,255,.06);
    border-bottom:1px solid rgba(255,255,255,.06);
}

.nx-cms-logo-strip{
  
    display:flex;
    justify-content:center;
    align-items:center;
    gap:2rem;
    padding:18px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
    flex-wrap:wrap;
}

.nx-cms-logo-strip span{
    color:#9ca3af;
    text-transform:uppercase;
    font-size:.75rem;
    letter-spacing:.12em;
}

.nx-cms-logo-strip strong{
    color:#fff;
    font-weight:600;
    font-size:.95rem;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:14px;
    padding:20px;
    border-right:1px solid rgba(255,255,255,.08);
    min-height:84px;
}

.feature-item i{
    color:#ff7a00;
    font-size:1.35rem;
    flex-shrink:0;
}

.feature-item strong{
    display:block;
    color:#fff;
    font-size:.9rem;
    font-weight:700;
    line-height:1.2;
}

.feature-item small{
    display:block;
    color:#8f96a3;
    font-size:.75rem;
    line-height:1.4;
}

@media (max-width:991px){

    .feature-item{
        border-right:0;
        border-bottom:1px solid rgba(255,255,255,.08);
    }

    .feature-item:last-child{
        border-bottom:0;
    }

    .nx-cms-logo-strip{
        gap:1rem;
        justify-content:flex-start;
    }

}

/* ==========================================================================
   [08] Helle Tokens und globale Card-Steuerung
   Setzt die helle Farbwelt und verbindet Bootstrap- sowie Plugin-Cards zentral.
   ========================================================================== */

html:root {
  color-scheme: light;
  --nx-cms-bg: #f7f8fb;
  --nx-cms-surface: #ffffff;
  --nx-cms-card: var(--nx-color-card-bg);
  --nx-color-card-bg: #ffffff;
  --nx-color-card-body-bg: var(--nx-color-card-bg);
  --nx-color-card-border: #d7dde6;
  --nx-theme-card-bg: var(--nx-color-card-bg);
  --nx-theme-card-body-bg: var(--nx-color-card-bg);
  --bs-card-bg: var(--nx-color-card-bg);
  --bs-card-border-color: #d7dde6;
  --nx-cms-line: rgba(19, 31, 51, .11);
  --nx-cms-text: #172033;
  --nx-cms-muted: #667085;
  --nx-cms-orange: var(--nx-color-primary, #ed7615);
  --nx-cms-orange-2: #d96308;
  --nx-template-preview-primary: #ed7615;
  --nx-template-preview-secondary: #e7ecf2;
  --nx-template-preview-surface: #f7f8fb;
  --nx-template-preview-text: #172033;
  --nx-template-preview-link: #d96308;
  --nx-template-preview-muted: #667085;
  --nx-template-preview-card-bg: #ffffff;
  --nx-template-preview-card-border: rgba(19, 31, 51, .11);
  --nx-template-preview-nav-bg: #ffffff;
  --nx-template-preview-nav-text: #172033;
  --nx-template-preview-footer-bg: #101218;
  --nx-template-preview-footer-text: #f4f6f9;
  --nx-template-preview-footer-muted: #8992a3;
  --nx-template-preview-footer-link: #d96308;
  --nx-template-preview-footer-link-hover: #b84f05;
  --nx-component-radius: .85rem;
  --nx-component-shadow: 0 16px 38px rgba(25, 39, 63, .1);
  --nx-component-shadow-hover: 0 22px 50px rgba(25, 39, 63, .14);
  --nx-component-list-bg: color-mix(
    in srgb,
    var(--nx-color-card-body-bg, var(--nx-color-card-bg, #ffffff)) 96%,
    var(--nx-color-on-surface, #172033) 4%
  );
}
:is(body:not(.builder-active), body.builder-active .nx-live-item) .badge {
  padding: .32rem .48rem;
  border-radius: .48rem;
  font-size: .72rem;
  font-weight: 750;
  line-height: 1;
  box-shadow: none;
}

:is(body:not(.builder-active), body.builder-active .nx-live-item) .badge.rounded-pill {
  border-radius: 999px;
}

body {
  background: var(--nx-cms-bg);
  color: var(--nx-cms-text);
}

/* Template-global card surface for all frontend pages. */
body:not(.builder-active) .card {
  --bs-card-bg: var(--nx-color-card-bg, #ffffff);
  --bs-card-border-color: var(--nx-color-card-border, #d7dde6);
  background-color: var(--nx-color-card-bg, #ffffff) !important;
}

body:not(.builder-active) .card > .card-body {
  background-color: var(--nx-color-card-body-bg, #ffffff) !important;
}

body:not(.builder-active) .card > .card-header:not([class*="bg-"]),
body:not(.builder-active) .card > .card-footer:not([class*="bg-"]) {
  background-color: var(--nx-color-card-bg, #ffffff) !important;
}

/* Plugin card systems without Bootstrap's .card class. */
body:not(.builder-active) .nx-compare {
  --bs-body-bg: var(--nx-color-card-bg, #ffffff);
}

body:not(.builder-active) .reference-showcase,
body:not(.builder-active) .reference-detail,
body:not(.builder-active) .reference-submit {
  --reference-card: var(--nx-color-card-bg, #ffffff);
  --reference-surface: var(--nx-color-card-bg, #ffffff);
}


body.nx-frontend-subpage:not(.builder-active) main.flex-fill .list-group {
  border: 1px solid color-mix(
    in srgb,
    var(--nx-component-border, var(--nx-color-card-border, #d7dde6)) 72%,
    var(--nx-color-on-surface, #172033) 28%
  );
  border-radius: .45rem;
  box-shadow: none;
}

body.nx-frontend-subpage:not(.builder-active) main.flex-fill .list-group-item {
  border: 0 !important;
  border-radius: 0 !important;
}

body.nx-frontend-subpage:not(.builder-active) main.flex-fill .list-group-item + .list-group-item {
  border-top: 1px solid color-mix(
    in srgb,
    var(--nx-component-border, var(--nx-color-card-border, #d7dde6)) 72%,
    var(--nx-color-on-surface, #172033) 28%
  ) !important;
}

body.nx-frontend-subpage:not(.builder-active) main.flex-fill .list-group-item-action:hover,
body.nx-frontend-subpage:not(.builder-active) main.flex-fill .list-group-item-action:focus {
  background: color-mix(
    in srgb,
    var(--nx-color-card-body-bg, var(--nx-color-card-bg, #000)) 90%,
    var(--nx-color-primary, #ed7615) 10%
  ) !important;
}


/* ==========================================================================
   [09] Helle Komponenten, Navigation und Footer-Basis
   Überführt Komponenten, Navigation und Footer in die helle Darstellung.
   ========================================================================== */

.nx-cms-home,
.nx-cms-section,
.nx-cms-cta {
  color: var(--nx-cms-text);
  background: var(--nx-cms-bg);
}

.nx-cms-hero {
  background:
    radial-gradient(circle at 82% 24%, rgba(245, 130, 32, .16), transparent 28%),
    radial-gradient(circle at 18% 20%, rgba(92, 82, 255, .08), transparent 27%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
}

.nx-cms-hero::before {
  background-image:
    linear-gradient(rgba(23, 32, 51, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 32, 51, .045) 1px, transparent 1px);
}

.nx-cms-orb--one {
  border-color: rgba(237, 118, 21, .22);
  box-shadow: 0 0 120px rgba(245, 130, 32, .1) inset;
}

.nx-cms-orb--two { border-color: rgba(92, 82, 255, .14); }

.nx-cms-badge {
  color: #4c5668;
  background: rgba(255, 255, 255, .78);
  border-color: rgba(23, 32, 51, .11);
  box-shadow: 0 8px 28px rgba(23, 32, 51, .05);
}

.nx-cms-hero h1,
.nx-cms-heading h2,
.nx-cms-workflow h2,
.nx-cms-news-intro h2,
.nx-cms-open h2 {
  color: #172033;
}

.nx-cms-heading h2,
.nx-cms-workflow h2,
.nx-cms-news-intro h2,
.nx-cms-open h2,
.nx-cms-cta h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.nx-cms-lead,
.nx-cms-heading > p,
.nx-cms-copy,
.nx-cms-feature p,
.nx-cms-news-intro p,
.nx-cms-open__card > .row p {
  color: var(--nx-cms-muted);
}

.nx-cms-btn--ghost {
  color: #263247;
  background: rgba(255, 255, 255, .74);
  border-color: rgba(23, 32, 51, .14);
}

.nx-cms-btn--ghost:hover {
  color: #172033;
  background: #ffffff;
  border-color: rgba(23, 32, 51, .24);
  box-shadow: 0 10px 28px rgba(23, 32, 51, .08);
}

.nx-cms-trust { color: #697386; }

.nx-cms-product-image {
  border-color: rgba(23, 32, 51, .13);
  box-shadow: 0 30px 80px rgba(35, 45, 66, .2);
}

.nx-cms-logo-strip {
  color: #667085;
  background: rgba(255, 255, 255, .82);
  border-color: rgba(23, 32, 51, .08);
}

.nx-cms-logo-strip strong { color: #354055; }

.nx-cms-features {
  background: linear-gradient(180deg, #f7f8fb 0%, #f1f4f8 100%);
}

.nx-cms-feature {
  background: rgba(255, 255, 255, .94);
  border-color: rgba(23, 32, 51, .09);
  box-shadow: 0 18px 45px rgba(37, 48, 69, .07);
}

.nx-cms-feature:hover {
  border-color: rgba(237, 118, 21, .24);
  box-shadow: 0 24px 58px rgba(37, 48, 69, .11);
}

.nx-cms-feature h3,
.nx-cms-steps strong { color: #202a3c; }

.nx-cms-workflow {
  background:
    radial-gradient(circle at 8% 55%, rgba(245, 130, 32, .09), transparent 24%),
    #ffffff;
}

.nx-cms-steps > button {
  color: #263247;
  background: #f8fafc;
  border-color: rgba(23, 32, 51, .1);
}

.nx-cms-steps > button:hover,
.nx-cms-steps > button.active {
  background: #ffffff;
  border-color: rgba(237, 118, 21, .3);
  box-shadow: 0 12px 32px rgba(35, 45, 66, .08);
}

.nx-cms-steps > button > span {
  color: #697386;
  background: #ffffff;
  border-color: rgba(23, 32, 51, .12);
}

.nx-cms-steps small { color: #697386; }

.nx-cms-editor {
  border-color: rgba(23, 32, 51, .14);
  box-shadow: 0 28px 72px rgba(35, 45, 66, .2);
}

.nx-cms-news-intro {
  color: var(--nx-cms-text);
  background: #f4f6f9;
  border-color: rgba(23, 32, 51, .08);
}

.nx-cms-news-widget {
  color: var(--nx-cms-text);
  background: #f4f6f9;
}

.nx-cms-news-widget .card,
.nx-cms-news-widget article {
  color: var(--nx-cms-text);
  background: #ffffff;
  border-color: rgba(23, 32, 51, .09);
  box-shadow: 0 16px 42px rgba(35, 45, 66, .08);
}

.nx-cms-news-widget h2,
.nx-cms-news-widget h3,
.nx-cms-news-widget h4,
.nx-cms-news-widget .card-title {
  color: #202a3c;
}

.nx-cms-news-widget p,
.nx-cms-news-widget .text-muted {
  color: var(--nx-cms-muted) !important;
}

.nx-cms-news-widget a { color: #c85d08; }

.nx-cms-open { background: #ffffff; }

.nx-cms-open__card {
  background:
    radial-gradient(circle at 5% 100%, rgba(245, 130, 32, .13), transparent 30%),
    linear-gradient(135deg, #ffffff, #f4f6fa);
  border-color: rgba(23, 32, 51, .1);
  box-shadow: 0 22px 60px rgba(35, 45, 66, .08);
}

.nx-cms-open__points span {
  color: #354055;
  background: rgba(255, 255, 255, .8);
  border-color: rgba(23, 32, 51, .1);
}

.nx-cms-open__image {
  border-color: rgba(23, 32, 51, .14);
  box-shadow: 0 24px 55px rgba(35, 45, 66, .2);
}

.nx-cms-cta {
  color: #273044;
  background:
    radial-gradient(circle at 50% -30%, rgba(245, 130, 32, .12), transparent 43%),
    radial-gradient(circle at 8% 100%, rgba(74, 101, 132, .08), transparent 34%),
    linear-gradient(135deg, #eef1f4 0%, #e2e6eb 50%, #d5dbe2 100%);
}

.nx-cms-cta::before {
  background-image: radial-gradient(rgba(57, 63, 90, .12) 1px, transparent 1px);
}

.nx-cms-cta__orb {
  border-color: rgba(224, 126, 48, .15);
  box-shadow: 0 0 100px rgba(245, 130, 32, .05) inset;
}

.nx-cms-cta .nx-cms-eyebrow { color: #c5651d; }
.nx-cms-cta h2 { color: #252b3b; }
.nx-cms-cta p { color: #626c7c; }

.nx-cms-cta > .container > small { color: #737d8d; }

.nx-cms-btn--light {
  color: #ffffff;
  background: #30364a;
}

.nx-cms-btn--outline-light {
  color: #3f4659;
  background: rgba(255, 255, 255, .26);
  border-color: rgba(49, 56, 76, .25);
}

.nx-cms-btn--outline-light:hover {
  color: #252b3b;
  background: rgba(255, 255, 255, .55);
  border-color: rgba(49, 56, 76, .38);
}

.navbar.nx-tk-nav-surface-light {
  background-color: rgba(255, 255, 255, .96) !important;
  border-bottom: 1px solid rgba(23, 32, 51, .08);
  backdrop-filter: blur(16px);
}

.navbar.nx-tk-nav-surface-light .navbar-brand,
.navbar.nx-tk-nav-surface-light .nav-link,
.navbar.nx-tk-nav-surface-light .navbar-toggler {
  color: #172033;
}

.nx-footer.nx-tk-bg-footer {
  color: #273247 !important;
  background: #eef1f5 !important;
  border-top: 1px solid rgba(23, 32, 51, .09);
}

.nx-footer h6,
.nx-footer .fw-semibold { color: #172033; }

.nx-footer .nx-tk-text-muted,
.nx-footer .nav-link {
  color: #657084 !important;
}

.nx-footer .nav-link:hover { color: #c85d08 !important; }

.nx-footer .nx-tk-border-footer-top {
  border-color: rgba(23, 32, 51, .12) !important;
}

.nx-footer .nx-footer-utility-btn {
  appearance: none;
  color: var(--nx-color-footer-bg, #101218) !important;
  background: var(--nx-color-footer-link, #f58220) !important;
  border-color: var(--nx-color-footer-link, #f58220) !important;
}

.nx-footer .nx-footer-utility-btn:hover,
.nx-footer .nx-footer-utility-btn:focus-visible {
  color: var(--nx-color-footer-bg, #101218) !important;
  background: var(--nx-color-footer-link-hover, #ffad5c) !important;
  border-color: var(--nx-color-footer-link-hover, #ffad5c) !important;
}


/* ==========================================================================
   [10] Tiefe und visuelle Hierarchie
   Ergänzt Schatten, Akzentflächen, Ebenen und Hover-Wirkung.
   ========================================================================== */

/* Depth and visual hierarchy */
.nx-cms-hero {
  box-shadow: inset 0 -1px rgba(23, 32, 51, .06);
}

.nx-cms-hero::after {
  position: absolute;
  width: min(42vw, 620px);
  height: min(42vw, 620px);
  right: -12%;
  top: 7%;
  background: radial-gradient(circle, rgba(255, 177, 105, .24), rgba(255, 211, 171, .08) 47%, transparent 70%);
  border: 1px solid rgba(237, 118, 21, .08);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.nx-cms-product {
  isolation: isolate;
}

.nx-cms-product::before {
  position: absolute;
  inset: 7% -3% -2% 7%;
  z-index: -1;
  background: linear-gradient(145deg, rgba(255, 255, 255, .9), rgba(232, 236, 244, .65));
  border: 1px solid rgba(23, 32, 51, .08);
  border-radius: 1.25rem;
  box-shadow: 0 24px 70px rgba(33, 42, 61, .12);
  content: "";
  transform: rotate(2deg);
}

.nx-cms-product__glow {
  background: rgba(245, 130, 32, .28);
  filter: blur(72px);
}

.nx-cms-product-image {
  box-shadow:
    0 45px 90px rgba(31, 41, 61, .22),
    0 15px 30px rgba(31, 41, 61, .12),
    0 0 0 7px rgba(255, 255, 255, .72);
}

.nx-cms-float {
  background: rgba(255, 255, 255, .92);
  border-color: rgba(23, 32, 51, .1);
  box-shadow: 0 18px 45px rgba(31, 41, 61, .16);
  backdrop-filter: blur(14px);
}

.nx-cms-float span { color: #667085; }
.nx-cms-float strong { color: #202a3c; }

.nx-cms-logo-strip {
  box-shadow:
    0 -1px rgba(23, 32, 51, .04),
    0 14px 36px rgba(31, 41, 61, .06);
}

.nx-cms-features,
.nx-cms-workflow,
.nx-cms-news-intro,
.nx-cms-news-widget,
.nx-cms-open {
  isolation: isolate;
}

.nx-cms-features {
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 11%, rgba(111, 91, 255, .08), transparent 24%),
    radial-gradient(circle at 92% 72%, rgba(245, 130, 32, .09), transparent 27%),
    linear-gradient(180deg, #f1f4f9 0%, #eef2f7 100%);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, .85),
    inset 0 -1px rgba(23, 32, 51, .07);
}

.nx-cms-features::before {
  position: absolute;
  width: 460px;
  height: 460px;
  left: -290px;
  top: 18%;
  border: 1px solid rgba(111, 91, 255, .11);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(111, 91, 255, .025);
  content: "";
  pointer-events: none;
}

.nx-cms-heading {
  position: relative;
  z-index: 2;
}

.nx-cms-heading::after {
  display: block;
  width: 58px;
  height: 4px;
  margin: 1.3rem auto 0;
  background: linear-gradient(90deg, var(--nx-cms-orange), #ffb66f);
  border-radius: 99px;
  box-shadow: 0 5px 16px rgba(237, 118, 21, .28);
  content: "";
}

.nx-cms-feature-grid {
  position: relative;
  z-index: 2;
  gap: 1.35rem;
}

.nx-cms-feature {
  border: 1px solid rgba(23, 32, 51, .1);
  border-radius: 1rem;
  box-shadow:
    0 22px 50px rgba(31, 41, 61, .1),
    0 3px 8px rgba(31, 41, 61, .05),
    inset 0 1px rgba(255, 255, 255, .95);
  transform: translateZ(0);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.nx-cms-feature::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .5);
  content: "";
  pointer-events: none;
}

.nx-cms-feature:hover {
  border-color: rgba(237, 118, 21, .3);
  box-shadow:
    0 30px 65px rgba(31, 41, 61, .15),
    0 8px 18px rgba(31, 41, 61, .07),
    inset 0 1px rgba(255, 255, 255, .95);
  transform: translateY(-7px);
}

.nx-cms-icon {
  border-radius: .75rem;
  box-shadow:
    0 10px 24px rgba(54, 99, 180, .11),
    inset 0 1px rgba(255, 255, 255, .7);
}

.nx-cms-feature-image {
  border-top: 1px solid rgba(23, 32, 51, .07);
  filter: saturate(1.04) contrast(1.02);
  box-shadow: 0 -14px 28px rgba(31, 41, 61, .04);
}

.nx-cms-feature-image--wide {
  border: 1px solid rgba(23, 32, 51, .09);
  border-radius: .8rem;
  box-shadow: -14px 18px 42px rgba(31, 41, 61, .12);
}

.nx-cms-workflow {
  background:
    radial-gradient(circle at 92% 18%, rgba(237, 118, 21, .10), transparent 25%),
    radial-gradient(circle at 7% 76%, rgba(245, 130, 32, .1), transparent 25%),
    linear-gradient(180deg, #fffdfa 0%, #ffffff 100%);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, .9),
    inset 0 -1px rgba(23, 32, 51, .07);
}

.nx-cms-workflow::before {
  position: absolute;
  width: 340px;
  height: 340px;
  left: -240px;
  bottom: -180px;
  border: 1px solid rgba(237, 118, 21, .13);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(237, 118, 21, .025);
  content: "";
}

.nx-cms-steps {
  padding: .55rem;
  background: rgba(247, 249, 252, .72);
  border: 1px solid rgba(23, 32, 51, .08);
  border-radius: 1rem;
  box-shadow: inset 0 1px rgba(255, 255, 255, .9);
}

.nx-cms-steps > button {
  padding: 1rem;
  border: 1px solid transparent;
  border-bottom-color: rgba(23, 32, 51, .07);
  border-radius: .7rem;
}

.nx-cms-steps > button:last-child { border-bottom-color: transparent; }

.nx-cms-steps > button:hover,
.nx-cms-steps > button.active {
  padding-left: 1.15rem;
}

.nx-cms-editor {
  border-radius: 1rem;
  box-shadow:
    0 38px 82px rgba(31, 41, 61, .23),
    0 12px 26px rgba(31, 41, 61, .1),
    0 0 0 7px rgba(255, 255, 255, .8);
}

.nx-cms-news-intro {
  background:
    linear-gradient(180deg, #edf2f8 0%, #e9eef5 100%);
  box-shadow: inset 0 1px rgba(255, 255, 255, .8);
}

.nx-cms-news-widget {
  background:
    radial-gradient(circle at 86% 14%, rgba(245, 130, 32, .1), transparent 23%),
    linear-gradient(180deg, #e9eef5 0%, #f4f6f9 100%);
  box-shadow: inset 0 -1px rgba(23, 32, 51, .07);
}

.nx-cms-open {
  background:
    radial-gradient(circle at 92% 50%, rgba(237, 118, 21, .07), transparent 25%),
    #ffffff;
}

.nx-cms-open__card {
  border-radius: 1.25rem;
  box-shadow:
    0 34px 75px rgba(31, 41, 61, .14),
    0 7px 18px rgba(31, 41, 61, .06),
    inset 0 1px rgba(255, 255, 255, .95);
}

.nx-cms-open__card::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.nx-cms-open__points span {
  box-shadow:
    0 8px 20px rgba(31, 41, 61, .07),
    inset 0 1px rgba(255, 255, 255, .9);
}

.nx-cms-open__image {
  box-shadow:
    0 34px 70px rgba(31, 41, 61, .25),
    0 10px 22px rgba(31, 41, 61, .12);
}

.nx-cms-cta {
  box-shadow:
    inset 0 1px rgba(255, 255, 255, .65),
    inset 0 -1px rgba(50, 57, 78, .13),
    0 -18px 50px rgba(31, 41, 61, .08);
}

.nx-cms-cta :is(.btn, .nx-cms-btn) {
  box-shadow: var(--nx-template-button-shadow, none);
}

.navbar.nx-tk-nav-surface-light {
  box-shadow:
    0 10px 30px rgba(31, 41, 61, .07),
    0 1px rgba(23, 32, 51, .05) !important;
}

.nx-footer.nx-tk-bg-footer {
  --nx-color-footer-text: #273247;
  --nx-color-footer-muted: #657084;
  --nx-color-footer-link: #ef6f4e;
  --nx-color-footer-link-hover: #c94e31;
  background:
    radial-gradient(circle at 82% 0%, rgba(245, 130, 32, .09), transparent 24%),
    linear-gradient(180deg, #edf1f6 0%, #e7ecf2 100%) !important;
  box-shadow: inset 0 1px rgba(255, 255, 255, .75);
}

html body footer.nx-footer.nx-tk-bg-footer,
html body footer.nx-footer.nx-tk-bg-footer p,
html body footer.nx-footer.nx-tk-bg-footer small,
html body footer.nx-footer.nx-tk-bg-footer .small,
html body footer.nx-footer.nx-tk-bg-footer .nx-tk-text-muted,
html body footer.nx-footer.nx-tk-bg-footer [data-nx-inline="year"],
html body footer.nx-footer.nx-tk-bg-footer [data-nx-inline="copyright_text"] {
  color: #657084 !important;
}

html body footer.nx-footer.nx-tk-bg-footer .fw-semibold,
html body footer.nx-footer.nx-tk-bg-footer h6 {
  color: #273247 !important;
}

html body footer.nx-footer.nx-tk-bg-footer a,
html body footer.nx-footer.nx-tk-bg-footer a.nav-link,
html body footer.nx-footer.nx-tk-bg-footer a.nx-tk-text-muted {
  color: #ef6f4e !important;
}

html body footer.nx-footer.nx-tk-bg-footer a:hover,
html body footer.nx-footer.nx-tk-bg-footer a:focus {
  color: #c94e31 !important;
}

@media (max-width: 767.98px) {
  .nx-cms-product::before { inset: 9% -1% -1% 2%; }
  .nx-cms-feature:hover,
  .nx-cms-news-widget .card:hover,
  .nx-cms-news-widget article:hover { transform: none; }
  .nx-cms-editor { box-shadow: 0 24px 55px rgba(31, 41, 61, .2); }
}


/* ==========================================================================
   [11] Abschluss-CTA als Karte
   Formt den abschließenden Handlungsbereich als eigenständige Karte.
   ========================================================================== */

/* Add visual depth to the closing CTA instead of a flat full-width surface. */
.nx-cms-cta {
  isolation: isolate;
  min-height: clamp(560px, 48vw, 680px);
  display: flex;
  align-items: center;
  border-block: 1px solid rgba(62, 72, 90, .12);
  box-shadow: inset 0 1px rgba(255, 255, 255, .75), inset 0 -30px 70px rgba(65, 78, 98, .08);
}

.nx-cms-cta::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at 18% 72%, rgba(255, 255, 255, .72), transparent 26%), radial-gradient(circle at 84% 24%, rgba(237, 118, 21, .1), transparent 25%);
  content: "";
  pointer-events: none;
}

.nx-cms-cta > .container {
  width: min(1320px, calc(100% - 2rem));
  padding: clamp(2.5rem, 5vw, 4.5rem);
  background: linear-gradient(135deg, rgba(255, 255, 255, .86) 0%, rgba(255, 249, 243, .78) 52%, rgba(255, 244, 232, .74) 100%);
  border: 1px solid rgba(237, 118, 21, .18);
  border-radius: 1.5rem;
  box-shadow: 0 32px 80px rgba(36, 48, 68, .14), 0 8px 24px rgba(36, 48, 68, .08), inset 0 1px rgba(255, 255, 255, .9);
  backdrop-filter: blur(16px);
}

@media (max-width: 767.98px) {
  .nx-cms-cta {
    min-height: auto;
    padding-block: 4rem;
  }

  .nx-cms-cta > .container {
    width: calc(100% - 1.25rem);
    padding: 2rem 1.25rem;
    border-radius: 1rem;
  }
}

/* CTA card accent line and soft color reflections. */
.nx-cms-cta > .container {
  overflow: hidden;
}

.nx-cms-cta > .container::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, transparent 4%, var(--nx-cms-orange, #ed7615) 28%, #ffb15e 50%, #ed7615 72%, transparent 96%);
  content: "";
}

.nx-cms-cta > .container::after {
  position: absolute;
  width: 260px;
  height: 260px;
  right: -120px;
  bottom: -170px;
  z-index: 0;
  background: radial-gradient(circle, rgba(237, 118, 21, .13), transparent 68%);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.nx-cms-cta > .container > * {
  position: relative;
  z-index: 1;
}


/* ==========================================================================
   [12] Breiten, Plattformstreifen und Footer-Integration
   Gleicht Widgetbreiten, Abstände, Plattformstreifen und Footer aufeinander ab.
   ========================================================================== */

/* Use the full inner container width; the Bootstrap container already supplies side gutters. */
.nx-cms-news-widget .news-magazine-widget,
[data-nx-key="widget_news_magazine"] .news-magazine-widget {
  width: 100% !important;
  max-width: none !important;
  margin-inline: 0 !important;
}

.nx-cms-news-widget .news-widget-empty,
[data-nx-key="widget_news_magazine"] .news-widget-empty {
  width: 100% !important;
  max-width: none !important;
}


/* Separate platform strip below the main hero artwork. */
.nx-cms-hero-strip {
  display: block;
  width: 100%;
  margin: clamp(1rem, 2.5vw, 2rem) auto 0;
}

.nx-cms-hero-strip img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: .75rem;
  box-shadow: 0 16px 40px rgba(31, 41, 61, .12);
}

@media (max-width: 767.98px) {
  .nx-cms-hero-strip { margin-top: 1.5rem; }
}


/* Match the audience strip to the dark platform strip below it. */
.nx-cms-logo-strip {
  background: #101218 !important;
  border-color: rgba(255, 255, 255, .08) !important;
  box-shadow: none;
}

.nx-cms-logo-strip span {
  color: #8992a3 !important;
}

.nx-cms-logo-strip strong {
  color: #d7dce5 !important;
}


/* Continue the dark platform-strip color through the footer. */
html body footer.nx-footer.nx-tk-bg-footer {
  --nx-color-footer-text: #d7dce5;
  --nx-color-footer-muted: #8992a3;
  --nx-color-footer-link: #f58220;
  --nx-color-footer-link-hover: #ffad5c;
  color: #d7dce5 !important;
  background: #101218 !important;
  border-top-color: rgba(255, 255, 255, .08) !important;
  box-shadow: none !important;
}

html body footer.nx-footer.nx-tk-bg-footer .fw-semibold,
html body footer.nx-footer.nx-tk-bg-footer h6 {
  color: #f4f6f9 !important;
}

html body footer.nx-footer.nx-tk-bg-footer p,
html body footer.nx-footer.nx-tk-bg-footer small,
html body footer.nx-footer.nx-tk-bg-footer .small,
html body footer.nx-footer.nx-tk-bg-footer .nx-tk-text-muted,
html body footer.nx-footer.nx-tk-bg-footer [data-nx-inline="year"],
html body footer.nx-footer.nx-tk-bg-footer [data-nx-inline="copyright_text"] {
  color: #8992a3 !important;
}

html body footer.nx-footer.nx-tk-bg-footer a,
html body footer.nx-footer.nx-tk-bg-footer a.nav-link,
html body footer.nx-footer.nx-tk-bg-footer a.nx-tk-text-muted {
  color: #f58220 !important;
}

html body footer.nx-footer.nx-tk-bg-footer a:hover,
html body footer.nx-footer.nx-tk-bg-footer a:focus {
  color: #ffad5c !important;
}

html body footer.nx-footer.nx-tk-bg-footer .nx-tk-border-footer-top {
  border-color: rgba(255, 255, 255, .1) !important;
}


/* Remove Bootstrap wrapper gaps between the homepage sections. */
[data-nx-zone="content"] > .nx-html-block:has(> .nx-cms-home),
[data-nx-zone="content"] > .nx-html-block:has(> .nx-cms-section),
[data-nx-zone="content"] > .nx-html-block:has(> .nx-cms-news-intro),
[data-nx-zone="content"] > .nx-html-block:has(> .nx-cms-cta) {
  margin-bottom: 0 !important;
}


/* Match the News Magazine widget to the 1320px cards above and below. */
[data-nx-zone="content"] > .news-magazine-widget,
[data-nx-zone="content"] > .nx-live-item[data-nx-key="widget_news_magazine"] > .nx-live-content {
  width: 100% !important;
  max-width: 1320px !important;
  margin-inline: auto !important;
  padding-inline: calc(var(--bs-gutter-x, 1.5rem) * .5) !important;
  box-sizing: border-box;
}

[data-nx-zone="content"] > .news-magazine-widget,
[data-nx-zone="content"] > .nx-live-item[data-nx-key="widget_news_magazine"] .news-magazine-widget {
  max-width: none !important;
}

@media (max-width: 575.98px) {
  [data-nx-zone="content"] > .news-magazine-widget,
  [data-nx-zone="content"] > .nx-live-item[data-nx-key="widget_news_magazine"] > .nx-live-content {
    padding-inline: .75rem !important;
  }
}


/* Final News Magazine width: align with the visible lower card (1296px). */
.nx-cms-news-widget .news-magazine-widget,
[data-nx-zone="content"] .news-magazine-widget,
[data-nx-key="widget_news_magazine"] .news-magazine-widget {
  width: 100% !important;
  max-width: 1296px !important;
  margin-inline: auto !important;
  padding-inline: 0 !important;
  box-sizing: border-box;
}

@media (max-width: 575.98px) {
  /* Final News Magazine mobile gutters */
  .nx-cms-news-widget .news-magazine-widget,
  [data-nx-zone="content"] .news-magazine-widget {
    width: calc(100% - 1.5rem) !important;
  }
}


/* Index only: end the CTA directly at its card so no empty band remains above the footer. */
body.nx-site-index [data-nx-zone="content"] .nx-cms-cta {
  min-height: 0 !important;
  padding-bottom: 0 !important;
  align-items: flex-start !important;
}

/* Compact transition between the open-source card and closing CTA. */
.nx-cms-open {
  padding-bottom: clamp(1.25rem, 2vw, 2rem);
}

.nx-cms-cta {
  padding-top: clamp(1.25rem, 2vw, 2rem);
}



/* ==========================================================================
   [13] Desktop-Hero, Builder-Footer und Split-CTA
   Enthält abschließende Desktop-, Builder- und zweispaltige CTA-Regeln.
   ========================================================================== */

/* Desktop hero: stretch the product artwork to the full height of the text column. */
@media (min-width: 992px) {
  .nx-cms-hero__inner > .row {
    align-items: stretch !important;
  }

  .nx-cms-hero__inner > .row > .col-lg-5 {
    display: flex;
  }

  .nx-cms-hero .nx-cms-product {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 0 0 0 1.2rem;
    align-items: stretch;
  }

  .nx-cms-hero .nx-cms-product-image {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    object-position: center;
  }
}


/* Keep the complete hero artwork visible; enlarge it proportionally without cropping. */
@media (min-width: 992px) {
  .nx-cms-hero .nx-cms-product {
    align-items: center;
  }

  .nx-cms-hero .nx-cms-product-image {
    width: 132%;
    max-width: none;
    height: auto;
    min-height: 0;
    margin-left: -16%;
    object-fit: contain;
    object-position: center;
  }
}


/* Builder canvas: force the same dark footer as the frontend preview. */
html body.builder-active .nx-live-item[data-nx-key="core_footer_2col"] footer.nx-footer.nx-tk-bg-footer {
  --nx-color-footer-bg: #101218;
  --nx-color-footer-text: #f4f6f9;
  --nx-color-footer-muted: #8992a3;
  --nx-color-footer-link: #f58220;
  --nx-color-footer-link-hover: #ffad5c;
  color: #f4f6f9 !important;
  background: #101218 !important;
  background-color: #101218 !important;
}

html body.builder-active .nx-live-item[data-nx-key="core_footer_2col"] footer.nx-footer h6,
html body.builder-active .nx-live-item[data-nx-key="core_footer_2col"] footer.nx-footer .fw-semibold {
  color: #f4f6f9 !important;
}

html body.builder-active .nx-live-item[data-nx-key="core_footer_2col"] footer.nx-footer p,
html body.builder-active .nx-live-item[data-nx-key="core_footer_2col"] footer.nx-footer .nx-tk-text-muted {
  color: #8992a3 !important;
}

html body.builder-active .nx-live-item[data-nx-key="core_footer_2col"] footer.nx-footer a {
  color: #f58220 !important;
}


/* Footer links return to the regular orange after click. */
html body footer.nx-footer.nx-tk-bg-footer a:link,
html body footer.nx-footer.nx-tk-bg-footer a:visited,
html body footer.nx-footer.nx-tk-bg-footer a:active,
html body footer.nx-footer.nx-tk-bg-footer a:focus {
  color: #f58220 !important;
}

html body footer.nx-footer.nx-tk-bg-footer a:hover,
html body footer.nx-footer.nx-tk-bg-footer a:focus-visible {
  color: #ffad5c !important;
}
/* Closing CTA: content on the left, artwork on the right. */
.nx-cms-cta.nx-cms-cta--split {
  text-align: left;
}

.nx-cms-cta.nx-cms-cta--split .nx-cms-cta__content > p {
  max-width: 620px;
  margin-inline: 0;
}

.nx-cms-cta.nx-cms-cta--split .nx-cms-actions {
  justify-content: flex-start;
}

.nx-cms-cta.nx-cms-cta--split .nx-cms-cta__content > small {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1rem;
  margin-top: 1.5rem;
  color: #737d8d;
  font-size: .7rem;
}

.nx-cms-cta.nx-cms-cta--split .nx-cms-cta__picture {
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 24px 55px rgba(35, 45, 66, .2);
}

@media (min-width: 992px) {
  .nx-cms-cta.nx-cms-cta--split .nx-cms-cta__image {
    height: auto;
    object-fit: contain;
  }
}

@media (max-width: 991.98px) {
  .nx-cms-cta.nx-cms-cta--split .nx-cms-cta__image {
    height: auto;
    object-fit: contain;
  }
  .nx-cms-cta.nx-cms-cta--split {
    text-align: center;
  }

  .nx-cms-cta.nx-cms-cta--split .nx-cms-cta__content > p {
    margin-inline: auto;
  }

  .nx-cms-cta.nx-cms-cta--split .nx-cms-actions,
  .nx-cms-cta.nx-cms-cta--split .nx-cms-cta__content > small {
    justify-content: center;
  }
}

/* ========================================================================== 
   [14] Globales Button-System
   Vereinheitlicht Bootstrap-Aktionen im hellen Template mit dem Forumstil.
   ========================================================================== */

/* Global button base: shared by frontend and builder preview. */
html:root {
  --nx-template-button-radius: .68rem;
  --nx-template-button-shadow: none;
  --nx-template-button-font-size: .82rem;
  --nx-template-button-padding-y: .58rem;
  --nx-template-button-padding-x: .9rem;
  --nx-template-button-primary-bg: color-mix(in srgb, var(--nx-color-primary, #ed7615) 10%, transparent);
  --nx-template-button-primary-border: color-mix(in srgb, var(--nx-color-primary, #ed7615) 26%, transparent);
  --nx-template-button-primary-text: var(--nx-color-primary, #d96308);
  --nx-template-button-primary-hover-bg: color-mix(in srgb, var(--nx-color-primary, #ed7615) 17%, transparent);
  --nx-template-button-primary-hover-border: color-mix(in srgb, var(--nx-color-primary, #ed7615) 38%, transparent);
  --nx-template-button-primary-hover-text: color-mix(in srgb, var(--nx-color-primary, #ed7615) 84%, #000);
  --nx-template-badge-primary-bg: var(--nx-template-button-primary-bg);
  --nx-template-badge-primary-border: var(--nx-template-button-primary-border);
  --nx-template-badge-primary-text: var(--nx-template-button-primary-text);
  --nx-template-badge-secondary-bg: color-mix(in srgb, var(--nx-color-muted, #667085) 9%, transparent);
  --nx-template-badge-secondary-border: color-mix(in srgb, var(--nx-color-muted, #667085) 22%, transparent);
  --nx-template-badge-secondary-text: var(--nx-color-muted, #667085);
  --nx-template-badge-success-bg: color-mix(in srgb, var(--bs-success, #198754) 9%, transparent);
  --nx-template-badge-success-border: color-mix(in srgb, var(--bs-success, #198754) 24%, transparent);
  --nx-template-badge-success-text: var(--bs-success, #198754);
  --nx-template-badge-warning-bg: color-mix(in srgb, var(--bs-warning, #ffc107) 13%, transparent);
  --nx-template-badge-warning-border: color-mix(in srgb, var(--bs-warning, #ffc107) 30%, transparent);
  --nx-template-badge-warning-text: #9a6700;
  --nx-template-badge-danger-bg: color-mix(in srgb, var(--bs-danger, #dc3545) 9%, transparent);
  --nx-template-badge-danger-border: color-mix(in srgb, var(--bs-danger, #dc3545) 24%, transparent);
  --nx-template-badge-danger-text: var(--bs-danger, #dc3545);
  --nx-template-badge-info-bg: color-mix(in srgb, var(--bs-info, #0dcaf0) 11%, transparent);
  --nx-template-badge-info-border: color-mix(in srgb, var(--bs-info, #0dcaf0) 27%, transparent);
  --nx-template-badge-info-text: #087990;
}

/* Global badge variants: soft template colors for counters, user lists and plugins. */
:is(body:not(.builder-active), body.builder-active .nx-live-item) :is(.nx-badge--primary, .badge.bg-primary, .badge.text-bg-primary) {
  background-color: var(--nx-template-badge-primary-bg) !important;
  border: 1px solid var(--nx-template-badge-primary-border) !important;
  color: var(--nx-template-badge-primary-text) !important;
}

:is(body:not(.builder-active), body.builder-active .nx-live-item) :is(.nx-badge--secondary, .badge.bg-secondary, .badge.text-bg-secondary) {
  background-color: var(--nx-template-badge-secondary-bg) !important;
  border: 1px solid var(--nx-template-badge-secondary-border) !important;
  color: var(--nx-template-badge-secondary-text) !important;
}

:is(body:not(.builder-active), body.builder-active .nx-live-item) :is(.nx-badge--success, .badge.bg-success, .badge.text-bg-success) {
  background-color: var(--nx-template-badge-success-bg) !important;
  border: 1px solid var(--nx-template-badge-success-border) !important;
  color: var(--nx-template-badge-success-text) !important;
}

:is(body:not(.builder-active), body.builder-active .nx-live-item) :is(.nx-badge--warning, .badge.bg-warning, .badge.text-bg-warning) {
  background-color: var(--nx-template-badge-warning-bg) !important;
  border: 1px solid var(--nx-template-badge-warning-border) !important;
  color: var(--nx-template-badge-warning-text) !important;
}

:is(body:not(.builder-active), body.builder-active .nx-live-item) :is(.nx-badge--danger, .badge.bg-danger, .badge.text-bg-danger) {
  background-color: var(--nx-template-badge-danger-bg) !important;
  border: 1px solid var(--nx-template-badge-danger-border) !important;
  color: var(--nx-template-badge-danger-text) !important;
}

:is(body:not(.builder-active), body.builder-active .nx-live-item) :is(.nx-badge--info, .badge.bg-info, .badge.text-bg-info) {
  background-color: var(--nx-template-badge-info-bg) !important;
  border: 1px solid var(--nx-template-badge-info-border) !important;
  color: var(--nx-template-badge-info-text) !important;
}
:is(body:not(.builder-active), body.builder-active .nx-live-item) :is(.btn, .nx-cms-btn) {
  display: inline-flex;
  min-height: 2.35rem;
  gap: .45rem;
  align-items: center;
  justify-content: center;
  padding: .58rem .9rem;
  border-width: 1px;
  border-radius: .68rem;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
  box-shadow: none;
  transition: color .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

:is(body:not(.builder-active), body.builder-active .nx-live-item) :is(.btn-primary, .btn-outline-primary) > * {
  color: inherit !important;
  -webkit-text-fill-color: currentColor !important;
}
:is(body:not(.builder-active), body.builder-active .nx-live-item) :is(.btn, .nx-cms-btn):hover { transform: translateY(-1px); }
:is(body:not(.builder-active), body.builder-active .nx-live-item) :is(.btn, .nx-cms-btn):active { transform: translateY(0); }

:is(body:not(.builder-active), body.builder-active .nx-live-item) .btn:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 .22rem color-mix(in srgb, var(--nx-color-primary, #ed7615) 22%, transparent);
}

:is(body:not(.builder-active), body.builder-active .nx-live-item) .btn-sm {
  --nx-template-button-radius: .58rem;
  --nx-template-button-font-size: .74rem;
  --nx-template-button-padding-y: .42rem;
  --nx-template-button-padding-x: .68rem;
  min-height: 2.05rem;
  padding: .42rem .68rem;
  border-radius: .58rem;
  font-size: .74rem;
}

:is(body:not(.builder-active), body.builder-active .nx-live-item) .btn-lg {
  --nx-template-button-radius: .78rem;
  --nx-template-button-font-size: .92rem;
  --nx-template-button-padding-y: .72rem;
  --nx-template-button-padding-x: 1.15rem;
  min-height: 2.8rem;
  padding: .72rem 1.15rem;
  border-radius: .78rem;
  font-size: .92rem;
}

:is(body:not(.builder-active), body.builder-active .nx-live-item) :is(.btn-primary, .nx-cms-btn--primary, .nx-cms-btn--light, .nx-cms-news-intro__heading > a) {
  border-color: var(--nx-template-button-primary-border) !important;
  color: var(--nx-template-button-primary-text) !important;
  background: var(--nx-template-button-primary-bg) !important;
  box-shadow: none;
}

:is(body:not(.builder-active), body.builder-active .nx-live-item) :is(.btn-primary, .nx-cms-btn--primary, .nx-cms-btn--light, .nx-cms-news-intro__heading > a):hover,
:is(body:not(.builder-active), body.builder-active .nx-live-item) :is(.btn-primary, .nx-cms-btn--primary, .nx-cms-btn--light, .nx-cms-news-intro__heading > a):focus {
  border-color: var(--nx-template-button-primary-hover-border) !important;
  color: var(--nx-template-button-primary-hover-text) !important;
  background: var(--nx-template-button-primary-hover-bg) !important;
  box-shadow: none;
}

:is(body:not(.builder-active), body.builder-active .nx-live-item) .btn-secondary,
:is(body:not(.builder-active), body.builder-active .nx-live-item) .btn-outline-secondary {
  border-color: color-mix(in srgb, var(--nx-color-muted, #667085) 22%, transparent);
  color: var(--nx-color-muted, #667085);
  background: color-mix(in srgb, var(--nx-color-muted, #667085) 9%, transparent);
}

:is(body:not(.builder-active), body.builder-active .nx-live-item) .btn-secondary:hover,
:is(body:not(.builder-active), body.builder-active .nx-live-item) .btn-outline-secondary:hover {
  border-color: color-mix(in srgb, var(--nx-color-muted, #667085) 32%, transparent);
  color: var(--nx-color-on-surface, #172033);
  background: color-mix(in srgb, var(--nx-color-muted, #667085) 14%, transparent);
}

:is(body:not(.builder-active), body.builder-active .nx-live-item) :is(.nx-cms-btn--ghost, .nx-cms-btn--outline-light) {
  border-color: color-mix(in srgb, var(--nx-color-muted, #667085) 22%, transparent) !important;
  color: var(--nx-color-muted, #667085) !important;
  background: color-mix(in srgb, var(--nx-color-muted, #667085) 9%, transparent) !important;
  box-shadow: none;
}

:is(body:not(.builder-active), body.builder-active .nx-live-item) :is(.nx-cms-btn--ghost, .nx-cms-btn--outline-light):hover,
:is(body:not(.builder-active), body.builder-active .nx-live-item) :is(.nx-cms-btn--ghost, .nx-cms-btn--outline-light):focus {
  border-color: color-mix(in srgb, var(--nx-color-muted, #667085) 32%, transparent) !important;
  color: var(--nx-color-on-surface, #172033) !important;
  background: color-mix(in srgb, var(--nx-color-muted, #667085) 14%, transparent) !important;
}
:is(body:not(.builder-active), body.builder-active .nx-live-item) .btn-warning,
:is(body:not(.builder-active), body.builder-active .nx-live-item) .btn-outline-warning {
  border-color: color-mix(in srgb, var(--nx-color-primary, #ed7615) 24%, transparent);
  color: var(--nx-color-primary, #d96308);
  background: color-mix(in srgb, var(--nx-color-primary, #ed7615) 10%, transparent);
}

:is(body:not(.builder-active), body.builder-active .nx-live-item) .btn-warning:hover,
:is(body:not(.builder-active), body.builder-active .nx-live-item) .btn-outline-warning:hover {
  border-color: color-mix(in srgb, var(--nx-color-primary, #ed7615) 34%, transparent);
  color: color-mix(in srgb, var(--nx-color-primary, #ed7615) 84%, #000);
  background: color-mix(in srgb, var(--nx-color-primary, #ed7615) 16%, transparent);
}

:is(body:not(.builder-active), body.builder-active .nx-live-item) .btn-danger,
:is(body:not(.builder-active), body.builder-active .nx-live-item) .btn-outline-danger {
  border-color: color-mix(in srgb, var(--bs-danger, #dc3545) 24%, transparent);
  color: var(--bs-danger, #dc3545);
  background: color-mix(in srgb, var(--bs-danger, #dc3545) 9%, transparent);
}

:is(body:not(.builder-active), body.builder-active .nx-live-item) .btn-danger:hover,
:is(body:not(.builder-active), body.builder-active .nx-live-item) .btn-outline-danger:hover {
  border-color: color-mix(in srgb, var(--bs-danger, #dc3545) 34%, transparent);
  color: color-mix(in srgb, var(--bs-danger, #dc3545) 86%, #000);
  background: color-mix(in srgb, var(--bs-danger, #dc3545) 15%, transparent);
}

:is(body:not(.builder-active), body.builder-active .nx-live-item) .btn-success,
:is(body:not(.builder-active), body.builder-active .nx-live-item) .btn-outline-success {
  border-color: color-mix(in srgb, var(--bs-success, #198754) 24%, transparent);
  color: var(--bs-success, #198754);
  background: color-mix(in srgb, var(--bs-success, #198754) 9%, transparent);
}

:is(body:not(.builder-active), body.builder-active .nx-live-item) .btn-success:hover,
:is(body:not(.builder-active), body.builder-active .nx-live-item) .btn-outline-success:hover {
  border-color: color-mix(in srgb, var(--bs-success, #198754) 34%, transparent);
  color: color-mix(in srgb, var(--bs-success, #198754) 86%, #000);
  background: color-mix(in srgb, var(--bs-success, #198754) 15%, transparent);
}

:is(body:not(.builder-active), body.builder-active .nx-live-item) .btn-light,
:is(body:not(.builder-active), body.builder-active .nx-live-item) .btn-outline-light {
  border-color: color-mix(in srgb, var(--nx-color-card-border, #d7dde6) 78%, transparent);
  color: var(--nx-color-on-surface, #172033);
  background: var(--nx-color-card-bg, #fff);
}

:is(body:not(.builder-active), body.builder-active .nx-live-item) .btn-dark,
:is(body:not(.builder-active), body.builder-active .nx-live-item) .btn-outline-dark {
  border-color: #172033;
  color: #fff;
  background: #172033;
}

:is(body:not(.builder-active), body.builder-active .nx-live-item) .btn-link {
  min-height: auto;
  padding-inline: .3rem;
  border-color: transparent;
  color: var(--nx-color-primary, #d96308);
  background: transparent;
  box-shadow: none;
}

:is(body:not(.builder-active), body.builder-active .nx-live-item) .btn-link:hover {
  color: color-mix(in srgb, var(--nx-color-primary, #ed7615) 84%, #000);
  background: color-mix(in srgb, var(--nx-color-primary, #ed7615) 7%, transparent);
}

:is(body:not(.builder-active), body.builder-active .nx-live-item) .btn-outline-primary {
  border-color: var(--nx-template-button-primary-border) !important;
  color: var(--nx-template-button-primary-text) !important;
  background: transparent !important;
}

:is(body:not(.builder-active), body.builder-active .nx-live-item) .btn-outline-primary:hover,
:is(body:not(.builder-active), body.builder-active .nx-live-item) .btn-outline-primary:focus {
  border-color: var(--nx-template-button-primary-hover-border) !important;
  color: var(--nx-template-button-primary-hover-text) !important;
  background: var(--nx-template-button-primary-hover-bg) !important;
  box-shadow: none;
}

:is(body:not(.builder-active), body.builder-active .nx-live-item) .btn-info,
:is(body:not(.builder-active), body.builder-active .nx-live-item) .btn-outline-info {
  border-color: color-mix(in srgb, var(--bs-info, #0dcaf0) 30%, transparent);
  color: color-mix(in srgb, var(--bs-info, #0dcaf0) 66%, #172033);
  background: color-mix(in srgb, var(--bs-info, #0dcaf0) 10%, transparent);
}

:is(body:not(.builder-active), body.builder-active .nx-live-item) .btn-info:hover,
:is(body:not(.builder-active), body.builder-active .nx-live-item) .btn-outline-info:hover {
  border-color: color-mix(in srgb, var(--bs-info, #0dcaf0) 42%, transparent);
  color: color-mix(in srgb, var(--bs-info, #0dcaf0) 58%, #172033);
  background: color-mix(in srgb, var(--bs-info, #0dcaf0) 17%, transparent);
}

:is(body:not(.builder-active), body.builder-active .nx-live-item) .btn:disabled,
:is(body:not(.builder-active), body.builder-active .nx-live-item) .btn.disabled {
  opacity: .5;
  transform: none;
  box-shadow: none;
  pointer-events: none;
}
/* ========================================================================== 
   [15] Globale Seitenanzeige
   Vereinheitlicht Pagination und Seitenzahlen mit dem dezenten Button-System.
   ========================================================================== */

:is(body:not(.builder-active), body.builder-active .nx-live-item) .pagination {
  --bs-pagination-color: var(--nx-color-muted, #667085);
  --bs-pagination-bg: var(--nx-color-card-bg, #fff);
  --bs-pagination-border-color: var(--nx-color-card-border, #d7dde6);
  --bs-pagination-hover-color: var(--nx-template-button-primary-hover-text, var(--nx-color-primary, #d96308));
  --bs-pagination-hover-bg: var(--nx-template-button-primary-hover-bg, color-mix(in srgb, var(--nx-color-primary, #ed7615) 17%, transparent));
  --bs-pagination-hover-border-color: var(--nx-template-button-primary-hover-border, color-mix(in srgb, var(--nx-color-primary, #ed7615) 38%, transparent));
  --bs-pagination-active-color: var(--nx-template-button-primary-text, var(--nx-color-primary, #d96308));
  --bs-pagination-active-bg: var(--nx-template-button-primary-bg, color-mix(in srgb, var(--nx-color-primary, #ed7615) 10%, transparent));
  --bs-pagination-active-border-color: var(--nx-template-button-primary-border, color-mix(in srgb, var(--nx-color-primary, #ed7615) 26%, transparent));
  display: flex;
  flex-wrap: wrap;
  gap: .38rem;
}

:is(body:not(.builder-active), body.builder-active .nx-live-item) .pagination .page-item {
  margin: 0;
}

:is(body:not(.builder-active), body.builder-active .nx-live-item) .pagination .page-link {
  min-width: 2.35rem;
  min-height: 2.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .58rem .78rem;
  color: var(--nx-color-muted, #667085) !important;
  background: var(--nx-color-card-bg, #fff) !important;
  border: 1px solid var(--nx-color-card-border, #d7dde6) !important;
  border-radius: var(--nx-template-button-radius, .68rem) !important;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-shadow: none;
  transition: color .18s ease, background-color .18s ease, border-color .18s ease, transform .18s ease;
}

:is(body:not(.builder-active), body.builder-active .nx-live-item) .pagination .page-link:hover,
:is(body:not(.builder-active), body.builder-active .nx-live-item) .pagination .page-link:focus-visible {
  color: var(--nx-template-button-primary-hover-text, var(--nx-color-primary, #d96308)) !important;
  background: var(--nx-template-button-primary-hover-bg, color-mix(in srgb, var(--nx-color-primary, #ed7615) 17%, transparent)) !important;
  border-color: var(--nx-template-button-primary-hover-border, color-mix(in srgb, var(--nx-color-primary, #ed7615) 38%, transparent)) !important;
  transform: translateY(-1px);
  outline: 0;
}

:is(body:not(.builder-active), body.builder-active .nx-live-item) .pagination .page-item.active .page-link,
:is(body:not(.builder-active), body.builder-active .nx-live-item) .pagination .page-link.active,
:is(body:not(.builder-active), body.builder-active .nx-live-item) .pagination .page-link[aria-current="page"] {
  color: var(--nx-template-button-primary-text, var(--nx-color-primary, #d96308)) !important;
  background: var(--nx-template-button-primary-bg, color-mix(in srgb, var(--nx-color-primary, #ed7615) 10%, transparent)) !important;
  border-color: var(--nx-template-button-primary-border, color-mix(in srgb, var(--nx-color-primary, #ed7615) 26%, transparent)) !important;
  box-shadow: none;
}

:is(body:not(.builder-active), body.builder-active .nx-live-item) .pagination .page-item.disabled .page-link,
:is(body:not(.builder-active), body.builder-active .nx-live-item) .pagination .page-link.disabled {
  color: color-mix(in srgb, var(--nx-color-muted, #667085) 66%, transparent) !important;
  background: color-mix(in srgb, var(--nx-color-muted, #667085) 6%, transparent) !important;
  border-color: color-mix(in srgb, var(--nx-color-card-border, #d7dde6) 72%, transparent) !important;
  opacity: .72;
  transform: none;
  pointer-events: none;
}

:is(body:not(.builder-active), body.builder-active .nx-live-item) .pagination-sm .page-link {
  min-width: 2rem;
  min-height: 2rem;
  padding: .42rem .62rem;
  border-radius: .58rem !important;
  font-size: .74rem;
}

:is(body:not(.builder-active), body.builder-active .nx-live-item) .pagination-lg .page-link {
  min-width: 2.8rem;
  min-height: 2.8rem;
  padding: .72rem 1rem;
  border-radius: .78rem !important;
  font-size: .92rem;
}


/* Hero reference layout: full-width device background (v2). */
.nx-cms-hero {
  padding-top: 0;
  background-color: #f7f6f5;
  background-image: image-set(
    url("../img/hero-devices-background-v2.webp") type("image/webp"),
    url("../img/hero-devices-background-v2.webp") type("image/webp"),
    url("../img/hero-devices-background-v2.png") type("image/png")
  );
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.nx-cms-hero::before {
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, .98) 0%,
    rgba(255, 255, 255, .92) 31%,
    rgba(255, 255, 255, .58) 43%,
    rgba(255, 255, 255, 0) 57%
  );
  mask-image: none;
}

.nx-cms-hero .nx-cms-orb,
.nx-cms-hero .nx-cms-product {
  display: none;
}

.nx-cms-hero__inner {
  display: flex;
  width: 100%;
  max-width: 1518px;
  min-height: clamp(650px, 41vw, 710px);
  align-items: center;
  padding-top: clamp(4.5rem, 6vw, 6.25rem);
  padding-bottom: clamp(3.75rem, 5vw, 5.5rem);
}

.nx-cms-hero__inner > .row {
  width: 100%;
}

.nx-cms-hero h1 {
  max-width: 660px;
  font-size: clamp(3.4rem, 4.4vw, 5.1rem);
}

.nx-cms-hero .nx-cms-lead {
  max-width: 590px;
}

.nx-cms-strip {
  position: relative;
  z-index: 3;
}

.nx-cms-strip .feature-item {
  min-height: 126px;
  padding: 24px 20px;
}

.nx-cms-strip .feature-item i {
  font-size: 1.8rem;
}

.nx-cms-strip .feature-item strong {
  font-size: .98rem;
}

.nx-cms-strip .feature-item small {
  font-size: .79rem;
}

@media (min-width: 992px) {
  .nx-cms-hero__inner > .row > .col-lg-7 {
    flex: 0 0 48%;
    width: 48%;
  }

  .nx-cms-hero__inner > .row > .col-lg-5 {
    flex: 0 0 52%;
    width: 52%;
  }
}

@media (max-width: 991.98px) {
  .nx-cms-hero {
    background-position: 64% center;
  }

  .nx-cms-hero::before {
    background: rgba(255, 255, 255, .88);
  }

  .nx-cms-hero__inner {
    min-height: auto;
    padding-top: 5rem;
    padding-bottom: 4.5rem;
  }

  .nx-cms-strip .feature-item {
    min-height: 92px;
  }
}

/* Hero v2 visibility and feature-heading alignment fix. */
.nx-cms-hero {
  background-position: right center;
  background-size: auto 100%;
}

.nx-cms-strip .row {
  align-items: stretch;
}

.nx-cms-strip .row > [class*="col"] {
  display: flex;
}

.nx-cms-strip .feature-item {
  width: 100%;
  height: 100%;
  align-items: flex-start;
}

.nx-cms-strip .feature-item > i,
.nx-cms-strip .feature-item > div {
  margin-top: 0;
}

@media (max-width: 991.98px) {
  .nx-cms-hero {
    background-position: right bottom;
    background-size: auto 100%;
  }

  .nx-cms-strip .row > [class*="col"] {
    display: block;
  }
}

/* Hero v2 desktop artwork: larger and positioned higher. */
@media (min-width: 992px) {
  .nx-cms-hero {
    background-position: right calc(50% - 35px);
    background-size: auto 112%;
  }
}

/* Keep the hero artwork above the dark feature strip. */
.nx-cms-hero {
  background-color: #f7f6f5;
  background-image: none;
}

.nx-cms-hero::before {
  display: none;
}

.nx-cms-hero__inner {
  isolation: isolate;
}

.nx-cms-hero__inner::before,
.nx-cms-hero__inner::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  content: "";
  pointer-events: none;
}

.nx-cms-hero__inner::before {
  z-index: -2;
  background-color: #f7f6f5;
  background-image: image-set(
    url("../img/hero-devices-background-v2.webp") type("image/webp"),
    url("../img/hero-devices-background-v2.webp") type("image/webp"),
    url("../img/hero-devices-background-v2.png") type("image/png")
  );
  background-position: right calc(50% - 48px);
  background-repeat: no-repeat;
  background-size: auto 118%;
}

.nx-cms-hero__inner::after {
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, .98) 0%,
    rgba(255, 255, 255, .92) 31%,
    rgba(255, 255, 255, .58) 43%,
    rgba(255, 255, 255, 0) 57%
  );
}

@media (max-width: 991.98px) {
  .nx-cms-hero__inner::before {
    background-position: right bottom;
    background-size: auto 100%;
  }

  .nx-cms-hero__inner::after {
    background: rgba(255, 255, 255, .88);
  }
}
/* Nexpell hell: Auth-Seiten in voller Template-Inhaltsbreite */
html body:is(.nx-site-login, .nx-site-register, .nx-site-lostpassword)
  .nx-index-content-container > .container.mt-5,
html body .nx-index-content-container > .container.mt-5:has(.card-body > .row.g-0 > .sign_pic_bg),
html body .nx-index-content-container > .container.mt-5:has(.card-body > .row.g-0 > .bg-image) {
  width: 100% !important;
  max-width: none !important;
  padding-inline: 0 !important;
}

html body:is(.nx-site-login, .nx-site-register, .nx-site-lostpassword)
  .nx-index-content-container > .container.mt-5 > .row,
html body .nx-index-content-container > .container.mt-5:has(.card-body > .row.g-0 > .sign_pic_bg) > .row,
html body .nx-index-content-container > .container.mt-5:has(.card-body > .row.g-0 > .bg-image) > .row {
  margin-inline: 0 !important;
}

html body:is(.nx-site-login, .nx-site-register, .nx-site-lostpassword)
  .nx-index-content-container > .container.mt-5 > .row > [class*="col-"],
html body .nx-index-content-container > .container.mt-5:has(.card-body > .row.g-0 > .sign_pic_bg) > .row > [class*="col-"],
html body .nx-index-content-container > .container.mt-5:has(.card-body > .row.g-0 > .bg-image) > .row > [class*="col-"] {
  flex: 0 0 100% !important;
  width: 100% !important;
  max-width: 100% !important;
  padding-inline: 0 !important;
}

@media (min-width: 576px) {
  html body:is(.nx-site-login, .nx-site-register, .nx-site-lostpassword)
    .card-body > .row.g-0 > :is(.sign_pic_bg, .bg-image),
  html body .nx-index-content-container .card-body > .row.g-0 > :is(.sign_pic_bg, .bg-image) {
    flex: 0 0 55% !important;
    width: 55% !important;
    max-width: 55% !important;
  }

  html body:is(.nx-site-login, .nx-site-register, .nx-site-lostpassword)
    .card-body > .row.g-0 > :not(.sign_pic_bg):not(.bg-image),
  html body .nx-index-content-container .card-body > .row.g-0 > :is(.sign_pic_bg, .bg-image) + * {
    flex: 0 0 45% !important;
    width: 45% !important;
    max-width: 45% !important;
  }
}

@media (max-width: 575.98px) {
  html body:is(.nx-site-login, .nx-site-register, .nx-site-lostpassword)
    .card-body > .row.g-0 > :not(.sign_pic_bg):not(.bg-image),
  html body .nx-index-content-container .card-body > .row.g-0 > :is(.sign_pic_bg, .bg-image) + * {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}