/* ==========================================================================
   Green Basilisk – Homepage
   Ausgelagerte Styles (vormals inline in index.html) — Enhancement-Schicht +
   ALLE Section-Template-Styles (unten). Reihenfolge: Reset -> Intro-Opener ->
   Float-Nav -> Scroll-Reveal -> Polish -> Cookie -> Section-Backgrounds ->
   Hero-Glow -> Section-Templates.
   ========================================================================== */

/* === Reset / Basis-Typo === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  overflow-x: hidden;
}
body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  color: #1a1a2e;
  line-height: 1.6;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(16px, 5vw, 64px);
}
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.btn-primary {
  background: #2563eb;
  color: #fff;
}
.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}
.btn-outline {
  border: 2px solid #2563eb;
  color: #2563eb;
  background: transparent;
}
.btn-outline:hover {
  background: #2563eb;
  color: #fff;
}
section {
  padding-block: clamp(56px, 8vw, 128px);
}
h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
}
h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}
h3 {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
}
p {
  color: #4a5568;
}

/* === Intro-Opener (Overlay-Markup aktuell nicht aktiv, Styles erhalten) === */
#gb-opener {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 1;
  transition: opacity 0.6s ease;
  touch-action: none;
  overscroll-behavior: none;
}
#gb-opener.gb-hide {
  opacity: 0;
  pointer-events: none;
}
#gb-opener-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.gb-opener-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(120% 110% at 50% 42%, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.86));
}
.gb-opener-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 24px;
  max-width: 900px;
  animation: gbOpenerIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.25s backwards;
}
@keyframes gbOpenerIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.gb-opener-logo {
  display: block;
  margin: 0 auto 22px;
  width: auto;
  height: 58px;
  filter: drop-shadow(0 0 26px color-mix(in srgb, var(--we-primary) 45%, transparent));
}
.gb-opener-h {
  font-family: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 30px;
  text-shadow: 0 4px 34px rgba(0, 0, 0, 0.65);
}
.gb-opener-h span {
  color: var(--we-primary);
}
.gb-opener-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: #04140a;
  background: var(--we-primary);
  border: none;
  padding: 15px 28px;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
  box-shadow: 0 0 30px color-mix(in srgb, var(--we-primary) 50%, transparent);
}
.gb-opener-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 46px color-mix(in srgb, var(--we-primary) 72%, transparent);
}
.gb-opener-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
#gb-preload {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(120% 120% at 50% 38%, #0a160e 0%, #000 72%);
  opacity: 1;
  transition: opacity 0.55s ease;
}
#gb-preload.gb-pl-done {
  opacity: 0;
  pointer-events: none;
}
.gb-preload-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  padding: 24px;
}
.gb-preload-logo {
  height: 64px;
  width: auto;
  filter: drop-shadow(0 0 26px color-mix(in srgb, var(--we-primary) 45%, transparent));
  animation:
    gbPlSpin 1.6s linear infinite,
    gbPlGlow 1.9s ease-in-out infinite;
  transform-origin: 50% 50%;
  will-change: transform;
}
@keyframes gbPlSpin {
  from {
    transform: perspective(700px) rotateY(0deg);
  }
  to {
    transform: perspective(700px) rotateY(360deg);
  }
}
@keyframes gbPlGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 20px color-mix(in srgb, var(--we-primary) 32%, transparent));
  }
  50% {
    filter: drop-shadow(0 0 42px color-mix(in srgb, var(--we-primary) 70%, transparent));
  }
}
.gb-preload-bar {
  position: relative;
  width: min(280px, 64vw);
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.gb-preload-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 8%;
  border-radius: 999px;
  background: linear-gradient(90deg, #00a344, var(--we-primary));
  box-shadow: 0 0 16px color-mix(in srgb, var(--we-primary) 72%, transparent);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.gb-preload-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  animation: gbPlShimmer 1.15s linear infinite;
}
@keyframes gbPlShimmer {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
.gb-preload-txt {
  font-family: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}
html.gb-opener-lock,
body.gb-opener-lock {
  overflow: hidden !important;
  height: 100%;
  overscroll-behavior: none;
  touch-action: none;
}
@media (prefers-reduced-motion: reduce) {
  #gb-opener {
    display: none !important;
  }
}

/* === Vertikale Icon-Navigation (Float-Nav) === */
:root {
  --gbn-bg: rgba(0, 0, 0, 0.82);
  --gbn-border: color-mix(in srgb, var(--we-primary) 30%, transparent);
  --gbn-icon: #8fae90;
  --gbn-active: var(--we-primary);
  --gbn-hover: #eaffea;
  --gbn-glow: color-mix(in srgb, var(--we-primary) 35%, transparent);
}
.gbnav {
  position: fixed;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 980;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 58px;
  padding: 16px 0;
  border: 1px solid var(--gbn-border);
  border-radius: 999px;
  background: var(--gbn-bg);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.55),
    0 0 42px color-mix(in srgb, var(--we-primary) 12%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    gap 0.24s ease,
    padding 0.24s ease;
  animation: gbnavIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.35s backwards;
}
@keyframes gbnavIn {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(-140%);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}
.gbnav.is-closed {
  gap: 0;
  padding: 12px 0;
}
.gbnav-toggle,
.gbnav-item {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--gbn-icon);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  border-radius: 999px;
  transition:
    color 0.18s ease,
    transform 0.18s ease,
    filter 0.18s ease,
    opacity 0.22s ease,
    max-height 0.24s ease,
    max-width 0.24s ease;
}
.gbnav svg {
  width: 22px;
  height: 22px;
}
.gbnav-toggle {
  color: var(--gbn-active);
  filter: drop-shadow(0 0 10px var(--gbn-glow));
}
.gbnav-toggle:hover {
  transform: scale(1.1);
}
.gbnav .gb-i-menu {
  display: none;
}
.gbnav.is-closed .gb-i-menu {
  display: block;
}
.gbnav.is-closed .gb-i-x {
  display: none;
}
.gbnav-item {
  position: relative;
  max-height: 40px;
}
.gbnav.is-closed .gbnav-item {
  max-height: 0;
  opacity: 0;
  transform: scale(0.7);
  pointer-events: none;
}
.gbnav-item:hover,
.gbnav-item:focus-visible {
  color: var(--gbn-hover);
  transform: scale(1.12);
  filter: drop-shadow(0 0 8px var(--gbn-glow));
}
.gbnav-item.is-active {
  color: var(--gbn-active);
  filter: drop-shadow(0 0 10px var(--gbn-glow));
}
.gbnav-item:focus-visible,
.gbnav-toggle:focus-visible {
  outline: 2px solid var(--gbn-active);
  outline-offset: 3px;
}
@media (hover: hover) and (min-width: 901px) {
  .gbnav-item::after {
    content: attr(data-label);
    position: absolute;
    left: calc(100% + 18px);
    top: 50%;
    transform: translate(-6px, -50%);
    background: #0b120c;
    border: 1px solid color-mix(in srgb, var(--we-primary) 30%, transparent);
    color: #eaffea;
    font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 6px 12px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 0.18s ease,
      transform 0.18s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }
  .gbnav-item:hover::after,
  .gbnav-item:focus-visible::after {
    opacity: 1;
    transform: translate(0, -50%);
  }
}
.gb-brand {
  position: fixed;
  top: 20px;
  left: 24px;
  z-index: 970;
  display: block;
  line-height: 0;
  text-decoration: none;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.6));
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
  animation: gbDrop 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.15s backwards;
}
.gb-brand img {
  height: 46px;
  width: auto;
  display: block;
}
.gb-brand:hover {
  transform: translateY(-1px);
  filter: drop-shadow(0 2px 14px color-mix(in srgb, var(--we-primary) 42%, transparent));
}
@keyframes gbDrop {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.gb-topcta {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 970;
  display: inline-flex;
  align-items: center;
  padding: 11px 18px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--we-primary) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--we-primary) 45%, transparent);
  color: var(--gbn-active);
  text-decoration: none;
  font-family: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
  animation: gbDrop 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.25s backwards;
}
.gb-topcta:hover {
  background: color-mix(in srgb, var(--we-primary) 18%, transparent);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.45),
    0 0 30px color-mix(in srgb, var(--we-primary) 30%, transparent);
  transform: translateY(-1px);
}
@media (min-width: 901px) and (max-width: 1320px) {
  .wehro24-wrap,
  .wefe24-wrap,
  .wepro23-wrap,
  .wesx11-wrap,
  .wets20-wrap,
  .wecta17-wrap,
  .wefo16-wrap {
    padding-left: 104px;
  }
}
@media (max-width: 900px) {
  body {
    padding-bottom: calc(78px + env(safe-area-inset-bottom, 0px));
  }
  .gbnav {
    left: 50%;
    right: auto;
    top: auto;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    transform: translateX(-50%);
    flex-direction: row;
    width: auto;
    height: 54px;
    padding: 0 12px;
    gap: 8px;
    animation-name: gbnavInM;
  }
  .gbnav.is-closed {
    gap: 0;
    padding: 0;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .gbnav.is-closed .gbnav-toggle {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.82);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    backdrop-filter: blur(18px) saturate(140%);
    box-shadow:
      0 12px 34px rgba(0, 0, 0, 0.55),
      0 0 26px color-mix(in srgb, var(--we-primary) 22%, transparent);
  }
  .gbnav-item {
    max-height: none;
    max-width: 40px;
  }
  .gbnav.is-closed .gbnav-item {
    max-height: none;
    max-width: 0;
  }
}
@keyframes gbnavInM {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(140%);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
@media (max-width: 900px) {
  .gb-brand img {
    height: 36px;
  }
}
@media (max-width: 520px) {
  .gb-brand {
    top: 14px;
    left: 14px;
  }
  .gb-brand img {
    height: 30px;
  }
}
@media (max-width: 380px) {
  .gbnav {
    gap: 4px;
    padding: 0 8px;
  }
  .gbnav-item,
  .gbnav-toggle {
    width: 36px;
    height: 36px;
  }
  .gbnav svg {
    width: 20px;
    height: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .gbnav,
  .gb-brand,
  .gb-topcta {
    animation: none;
  }
  .gbnav,
  .gbnav-toggle,
  .gbnav-item {
    transition: none;
  }
}

/* === Scroll-Reveal (GSAP-gesteuert) ===
   Default sichtbar. script.js markiert Reveal-Elemente mit [data-reveal] und setzt
   html.gb-reveal-on -> dann vorab versteckt + einzeln beim Eintritt eingeblendet.
   Kein JS / kein GSAP / Editor -> keine Markierung -> alles sichtbar (nie Hängen). */
#features,
#ablauf,
#stimmen,
#early-access {
  scroll-margin-top: 24px;
}
html.gb-reveal-on [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  /* Hover-Transitions (transform/box-shadow der Cards) würden sonst jede
     GSAP-Frame-Änderung nochmal glätten -> ruckelig. Nach dem Reveal wird
     [data-reveal] entfernt, Hover funktioniert wieder normal. */
  transition: none !important;
  will-change: transform, opacity;
}
@media (prefers-reduced-motion: reduce) {
  html.gb-reveal-on [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* === Polish: Hover, Fokus, Scrollbar === */
.wehro24-frame {
  aspect-ratio: auto;
}
.wehro24-frame img {
  height: auto;
  object-fit: contain;
}
.wehro24-btn,
.wehro24-ghost {
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}
.wehro24-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 34px color-mix(in srgb, var(--we-primary) 40%, transparent);
}
.wehro24-btn:active {
  transform: translateY(0);
}
.wehro24-ghost:hover {
  border-color: var(--we-primary);
  color: var(--we-primary-text);
}
.wehro24-wrap {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
}
.wehro24-copy,
.wehro24-stage {
  min-width: 0;
}
.wehro24-frame,
.wehro24-frame img {
  max-width: 100%;
}
.wehro24-badge i {
  background: #ff3b30;
  box-shadow: 0 0 10px #ff3b30;
  animation: gbLive 1.5s ease-in-out infinite;
}
@keyframes gbLive {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 12px #ff3b30;
  }
  50% {
    opacity: 0.25;
    box-shadow: 0 0 3px #ff3b30;
  }
}
@media (prefers-reduced-motion: reduce) {
  .wehro24-badge i {
    animation: none;
    opacity: 1;
  }
}
@media (max-width: 820px) {
  .wehro24-stage {
    order: 0;
  }
  .wehro24-wrap {
    padding-top: 96px;
    grid-template-columns: minmax(0, 1fr);
  }
}
.wefe24-card,
.wesx11-tile,
.wets20-q,
.wepro23-card,
.wefo16-s {
  transition:
    transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}
.wefe24-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--we-primary) 40%, transparent);
  box-shadow: 0 14px 40px -14px color-mix(in srgb, var(--we-primary) 35%, transparent);
}
.wesx11-tile:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--we-primary) 45%, transparent);
}
.wets20-q:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--we-primary) 35%, transparent);
}
.wepro23-card:hover {
  border-color: color-mix(in srgb, var(--we-primary) 35%, transparent);
}
.wefo16-s:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--we-primary) 45%, transparent);
}
.wefo16-social {
  grid-template-columns: repeat(2, minmax(0, 260px));
  justify-content: center;
}
.wecta17-btn,
.wecta17-ghost {
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}
.wecta17-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px -10px color-mix(in srgb, var(--we-primary) 55%, transparent);
}
.wecta17-ghost:hover {
  border-color: var(--we-primary);
}
.wefo16-nav a {
  transition: color 0.18s ease;
}
.wefo16-nav a:hover {
  color: var(--we-primary);
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
label:focus-visible {
  outline: 2px solid var(--we-primary);
  outline-offset: 3px;
}
::selection {
  background: var(--we-primary);
  color: #0a0a0a;
}
html,
body {
  background: #0a0a0a;
  overflow-x: hidden;
  max-width: 100%;
}
html {
  scrollbar-color: #2a2a2a #0a0a0a;
}
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
  background: #252526;
  border: 3px solid #0a0a0a;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--we-primary-2);
}
@media (prefers-reduced-motion: reduce) {
  .wefe24-card,
  .wesx11-tile,
  .wets20-q,
  .wepro23-card,
  .wefo16-s,
  .wehro24-btn,
  .wehro24-ghost,
  .wecta17-btn {
    transition: none !important;
  }
}

/* === Cookie-/Transparenz-Hinweis === */
#gb-cookie {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 985;
  max-width: 390px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 20px;
  background: rgba(13, 13, 13, 0.9);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid color-mix(in srgb, var(--we-primary) 22%, transparent);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.6),
    0 0 30px color-mix(in srgb, var(--we-primary) 8%, transparent);
  transform: translateY(160%);
  opacity: 0;
  transition:
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease;
  pointer-events: none;
}
#gb-cookie.gb-cookie-in {
  transform: none;
  opacity: 1;
  pointer-events: auto;
}
.gb-cookie-txt {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.86rem;
  line-height: 1.55;
  color: #b7b3b7;
  margin: 0;
}
.gb-cookie-txt strong {
  color: #efe7f0;
}
.gb-cookie-txt a {
  color: var(--we-primary-text);
  text-decoration: underline;
}
.gb-cookie-ok {
  align-self: flex-start;
  font-family: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 11px 22px;
  border: 0;
  border-radius: 999px;
  background: var(--we-primary);
  color: #04160b;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.18s ease;
  box-shadow: 0 0 24px color-mix(in srgb, var(--we-primary) 35%, transparent);
}
.gb-cookie-ok:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 38px color-mix(in srgb, var(--we-primary) 55%, transparent);
}
#gb-cookie-toggle {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 984;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(13, 13, 13, 0.85);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid color-mix(in srgb, var(--we-primary) 28%, transparent);
  color: var(--we-primary);
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease;
}
#gb-cookie-toggle.gb-cookie-t-in {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
#gb-cookie-toggle:hover {
  transform: translateY(-1px) scale(1.05);
  border-color: color-mix(in srgb, var(--we-primary) 60%, transparent);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.5),
    0 0 24px color-mix(in srgb, var(--we-primary) 35%, transparent);
}
@media (max-width: 900px) {
  #gb-cookie-toggle {
    left: 16px;
    bottom: calc(92px + env(safe-area-inset-bottom, 0px));
  }
}
@media (prefers-reduced-motion: reduce) {
  #gb-cookie-toggle {
    transition: opacity 0.3s ease;
  }
}
@media (max-width: 900px) {
  #gb-cookie {
    left: 12px;
    right: 12px;
    max-width: none;
    bottom: calc(88px + env(safe-area-inset-bottom, 0px));
  }
}
@media (prefers-reduced-motion: reduce) {
  #gb-cookie {
    transition: opacity 0.3s ease;
  }
}

/* === Section-Hintergründe (Prozess, FAQ, Stimmen, Stats) ===
   background-attachment:fixed BEWUSST ENTFERNT (verursachte Scroll-Ruckeln). */
.wepro23,
#faq {
  position: relative;
}
.wepro23::before,
#faq::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.wepro23::before {
  background-image:
    linear-gradient(rgba(10, 10, 10, 0.74), rgba(10, 10, 10, 0.84)),
    url("https://jtspyojvaqcmkjmllwrw.supabase.co/storage/v1/object/public/media/uploads/989ed50a-a8e2-4bbe-87df-00fe93852fa6.png");
}
#faq::before {
  background-image:
    linear-gradient(rgba(10, 10, 10, 0.74), rgba(10, 10, 10, 0.84)),
    url("https://jtspyojvaqcmkjmllwrw.supabase.co/storage/v1/object/public/media/uploads/c51f6fa2-3454-4f2d-951e-78c5a05e1736.png");
}
.wepro23-wrap,
.gbfaq-wrap {
  position: relative;
  z-index: 1;
}
#stimmen {
  position: relative;
}
#stimmen::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(color-mix(in srgb, var(--we-primary) 11%, transparent) 1px, transparent 1px),
    linear-gradient(
      90deg,
      color-mix(in srgb, var(--we-primary) 11%, transparent) 1px,
      transparent 1px
    );
  background-size: 46px 46px;
  -webkit-mask-image: linear-gradient(90deg, transparent 16%, #000 25%, #000 75%, transparent 84%);
  mask-image: linear-gradient(90deg, transparent 16%, #000 25%, #000 75%, transparent 84%);
}
.wets20-wrap {
  position: relative;
  z-index: 1;
}
.wepro23-card {
  background: rgba(16, 18, 22, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow:
    0 16px 46px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
}
.wesx11 {
  position: relative;
}
.wesx11::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      55% 45% at 18% 2%,
      color-mix(in srgb, var(--we-primary) 22%, transparent),
      transparent 60%
    ),
    radial-gradient(
      50% 55% at 88% 100%,
      color-mix(in srgb, var(--we-primary) 18%, transparent),
      transparent 60%
    );
}
.wesx11-wrap {
  position: relative;
  z-index: 1;
}
.wesx11-tile {
  background: linear-gradient(
    158deg,
    rgba(255, 255, 255, 0.11),
    rgba(255, 255, 255, 0.025) 45%,
    rgba(255, 255, 255, 0.012)
  );
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 22px 52px -14px color-mix(in srgb, var(--we-primary) 38%, transparent),
    0 0 0 1px color-mix(in srgb, var(--we-primary) 8%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -34px 60px -34px color-mix(in srgb, var(--we-primary) 22%, transparent);
}
@media (prefers-reduced-transparency: reduce) {
  .wepro23-card {
    background: #14161a;
  }
  .wesx11-tile {
    background: #17151c;
  }
}

/* === Hero-Glow / Raster === */
.wehro24 {
  position: relative;
}
.wehro24-wrap {
  position: relative;
  z-index: 1;
}
.wehro24-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(color-mix(in srgb, var(--we-primary) 12%, transparent) 1px, transparent 1px),
    linear-gradient(
      90deg,
      color-mix(in srgb, var(--we-primary) 12%, transparent) 1px,
      transparent 1px
    );
  background-size: 46px 46px;
  -webkit-mask-image: linear-gradient(90deg, transparent 16%, #000 25%, #000 75%, transparent 84%);
  mask-image: linear-gradient(90deg, transparent 16%, #000 25%, #000 75%, transparent 84%);
}
.wehro24-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(color-mix(in srgb, var(--we-primary-2) 55%, transparent) 1px, transparent 1px),
    linear-gradient(
      90deg,
      color-mix(in srgb, var(--we-primary-2) 55%, transparent) 1px,
      transparent 1px
    );
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(
    circle 200px at var(--gx, 50%) var(--gy, 50%),
    #000,
    transparent 72%
  );
  mask-image: radial-gradient(circle 200px at var(--gx, 50%) var(--gy, 50%), #000, transparent 72%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.wehro24:hover .wehro24-grid::after {
  opacity: 1;
}
.wehro24::before,
.wehro24::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(70px);
  will-change: transform, opacity;
}
.wehro24::before {
  width: 48vw;
  max-width: 680px;
  aspect-ratio: 1;
  left: -10%;
  bottom: -14%;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--we-primary) 28%, transparent),
    color-mix(in srgb, var(--we-primary) 0%, transparent) 70%
  );
  animation: gbGlowA 15s ease-in-out infinite;
}
.wehro24::after {
  width: 42vw;
  max-width: 600px;
  aspect-ratio: 1;
  right: -10%;
  top: -6%;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--we-primary-2) 22%, transparent),
    color-mix(in srgb, var(--we-primary-2) 0%, transparent) 70%
  );
  animation: gbGlowB 19s ease-in-out infinite;
}
@keyframes gbGlowA {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate3d(8%, -6%, 0) scale(1.18);
    opacity: 1;
  }
}
@keyframes gbGlowB {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1.05);
    opacity: 0.6;
  }
  50% {
    transform: translate3d(-7%, 7%, 0) scale(0.9);
    opacity: 0.9;
  }
}
@keyframes gbGridGlow {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .wehro24::before,
  .wehro24::after,
  .wehro24-grid,
  #stimmen::before {
    animation: none;
    opacity: 1;
  }
}

/* ==========================================================================
   SECTION-TEMPLATES — aus index.html ausgelagert (vormals inline <style> je Section)
   ========================================================================== */

/* --- Hero (hero-24) --- */
.wehro24-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 104px) clamp(20px, 5vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.wehro24-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--we-font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--we-primary-text);
  background: color-mix(in srgb, var(--we-primary-2) 10%, transparent);
  border: 1px solid var(--we-border);
  padding: 6px 14px;
  border-radius: 999px;
}
.wehro24-badge i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--we-primary);
  box-shadow: 0 0 10px var(--we-primary);
}
.wehro24-title {
  font-family: var(--we-font-heading);
  font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.03;
  letter-spacing: -0.01em;
  margin: 16px 0 0;
}
.wehro24-title span {
  color: var(--we-primary-text);
}
.gb-rot {
  display: inline-block;
  vertical-align: baseline;
  transition: width 0.34s cubic-bezier(0.16, 1, 0.3, 1);
}
.gb-rot-word {
  display: inline-block;
  white-space: nowrap;
  transition:
    transform 0.34s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.34s ease;
  will-change: transform, opacity;
}
.gb-rot-word.gb-out {
  transform: translateY(-0.42em);
  opacity: 0;
  transition:
    transform 0.24s ease-in,
    opacity 0.24s ease-in;
}
.wehro24-lead {
  font-family: var(--we-font-body);
  color: var(--we-muted);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.6;
  margin: 18px 0 28px;
  max-width: 44ch;
}
.wehro24-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.wehro24-btn {
  font-family: var(--we-font-body);
  font-weight: 600;
  background: var(--we-primary);
  color: var(--we-on-primary);
  padding: 14px 28px;
  border-radius: var(--we-radius-sm);
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.wehro24-ghost {
  font-family: var(--we-font-body);
  font-weight: 600;
  color: var(--we-text);
  border: 1px solid var(--we-border);
  padding: 14px 28px;
  border-radius: var(--we-radius-sm);
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.wehro24-stats {
  display: flex;
  gap: clamp(20px, 4vw, 40px);
  flex-wrap: wrap;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--we-border);
}
.wehro24-stats div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.wehro24-stats b {
  font-family: var(--we-font-heading);
  font-weight: 700;
  font-size: 1.35rem;
}
.wehro24-stats span {
  font-family: var(--we-font-body);
  font-size: 12px;
  color: var(--we-muted);
}
.wehro24-stage {
  position: relative;
}
.wehro24-frame {
  border-radius: var(--we-radius-lg);
  overflow: hidden;
  border: 1px solid var(--we-border);
  aspect-ratio: 5/6;
  background: var(--we-surface-2);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--we-primary-2) 14%, transparent),
    0 30px 80px rgba(0, 0, 0, 0.5);
}
.wehro24-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wehro24-chip {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(24, 26, 32, 0.72);
  backdrop-filter: blur(10px);
  border: 1px solid var(--we-border);
  border-radius: var(--we-radius-sm);
  padding: 12px 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}
.wehro24-chip b {
  font-family: var(--we-font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--we-primary-text);
}
.wehro24-chip span {
  font-family: var(--we-font-body);
  font-size: 11px;
  color: var(--we-muted);
}
.wehro24-a {
  top: 10%;
  left: -6%;
}
.wehro24-b {
  bottom: 12%;
  right: -5%;
  border-color: color-mix(in srgb, var(--we-primary-2) 38%, transparent);
}
.wehro24-b b {
  color: var(--we-primary-2);
}
@media (max-width: 820px) {
  .wehro24-wrap {
    grid-template-columns: 1fr;
  }
  .wehro24-stage {
    order: -1;
  }
  .wehro24-chip {
    display: none;
  }
}

/* --- Features: GemSmoke-Hintergrund --- */
#features .gb-gemsmoke-bg {
  transform: translateX(12%);
  -webkit-mask: linear-gradient(90deg, transparent, #000 16%);
  mask: linear-gradient(90deg, transparent, #000 16%);
}
@media (max-width: 768px) {
  #features .gb-gemsmoke-bg {
    display: none !important;
  }
}

/* --- Logo-Banner (gblb) --- */
.gblb .gblb-label {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(20px, 3vw, 34px);
  padding: 0 clamp(20px, 5vw, 40px);
  box-sizing: border-box;
  font-family: var(--we-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--we-text);
  line-height: 1.5;
}
.gblb .gblb-vp {
  position: relative;
  width: 100%;
  -webkit-mask: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.gblb .gblb-track {
  display: flex;
  align-items: center;
  gap: clamp(44px, 7vw, 92px);
  width: max-content;
  animation: gblb-scroll 34s linear infinite;
  will-change: transform;
}
.gblb .gblb-logo {
  flex: 0 0 auto;
  width: clamp(100px, 13vw, 152px);
  height: clamp(36px, 5vw, 54px);
  background-color: var(--we-muted);
  -webkit-mask: var(--u) center/contain no-repeat;
  mask: var(--u) center/contain no-repeat;
  opacity: 0.95;
  transition:
    opacity 0.3s ease,
    filter 0.3s ease,
    background-color 0.3s ease;
}
.gblb .gblb-logo:hover {
  opacity: 1;
  background-color: var(--we-primary);
  filter: drop-shadow(0 0 12px var(--we-primary));
}
.gblb .gblb-icon {
  flex: 0 0 auto;
  width: clamp(40px, 5.4vw, 56px);
  height: clamp(40px, 5.4vw, 56px);
  background-color: var(--we-muted);
  -webkit-mask: var(--u) center/contain no-repeat;
  mask: var(--u) center/contain no-repeat;
  opacity: 0.95;
  transition:
    opacity 0.3s ease,
    filter 0.3s ease,
    background-color 0.3s ease;
}
.gblb .gblb-icon:hover {
  opacity: 1;
  background-color: var(--we-primary);
  filter: drop-shadow(0 0 12px var(--we-primary));
}
@keyframes gblb-scroll {
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .gblb {
    padding: clamp(28px, 7vw, 44px) 0;
  }
  .gblb .gblb-track {
    gap: clamp(36px, 8vw, 60px);
    animation-duration: 26s;
  }
  .gblb .gblb-logo {
    width: clamp(84px, 20vw, 120px);
    height: clamp(30px, 7vw, 44px);
  }
  .gblb .gblb-icon {
    width: clamp(34px, 9vw, 46px);
    height: clamp(34px, 9vw, 46px);
  }
}
@media (max-width: 480px) {
  .gblb .gblb-vp {
    -webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  }
  .gblb .gblb-track {
    gap: 32px;
    animation-duration: 20s;
  }
  .gblb .gblb-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    padding: 0 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .gblb .gblb-track {
    animation: none;
  }
}

/* --- Features (feature-24) --- */
.wefe24-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: clamp(52px, 8vw, 112px) clamp(20px, 5vw, 48px);
}
.wefe24-head {
  max-width: 44ch;
  margin-bottom: clamp(28px, 4vw, 48px);
}
.wefe24-kick {
  display: inline-block;
  font-family: var(--we-font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--we-on-primary);
  background: var(--we-primary);
  padding: 6px 14px;
  border-radius: 999px;
}
.wefe24-title {
  font-family: var(--we-font-heading);
  font-weight: 800;
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 14px 0 12px;
}
.wefe24-lead {
  font-family: var(--we-font-body);
  color: var(--we-muted);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  margin: 0;
}
.wefe24-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.8vw, 20px);
}
.wefe24-card {
  background: var(--we-surface);
  border: 1px solid var(--we-border);
  border-radius: var(--we-radius);
  padding: clamp(22px, 2.4vw, 28px);
}
.wefe24-ic {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: var(--we-on-primary);
}
.wefe24-ic svg {
  width: 26px;
  height: 26px;
}
.wefe24-ic1 {
  background: var(--we-primary);
}
.wefe24-ic2 {
  background: var(--we-accent);
}
.wefe24-ic3 {
  background: var(--we-primary-2);
  color: var(--we-text);
}
.wefe24-ic4 {
  background: var(--we-text);
}
.wefe24-card h3 {
  font-family: var(--we-font-heading);
  font-weight: 700;
  font-size: clamp(1.1rem, 1.9vw, 1.3rem);
  margin: 0 0 0.3em;
}
.wefe24-card p {
  font-family: var(--we-font-body);
  color: var(--we-muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 820px) {
  .wefe24-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 440px) {
  .wefe24-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Prozess (process-23) --- */
.wepro23-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(52px, 8vw, 112px) clamp(20px, 5vw, 48px);
}
.wepro23-head {
  margin-bottom: clamp(28px, 4vw, 48px);
}
.wepro23-kick {
  font-family: var(--we-font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--we-primary-text);
}
.wepro23-title {
  font-family: var(--we-font-heading);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin: 8px 0 0;
}
.wepro23-line {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}
.wepro23-line::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, var(--we-primary), var(--we-primary-2));
}
.wepro23-item {
  position: relative;
  padding: 0 0 clamp(18px, 3vw, 28px) clamp(40px, 6vw, 56px);
}
.wepro23-item:last-child {
  padding-bottom: 0;
}
.wepro23-item::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--we-primary);
  box-shadow:
    0 0 12px var(--we-primary),
    0 0 0 4px color-mix(in srgb, var(--we-primary-2) 16%, transparent);
}
.wepro23-item:nth-child(2n)::before {
  background: var(--we-primary-2);
  box-shadow:
    0 0 12px var(--we-primary-2),
    0 0 0 4px color-mix(in srgb, var(--we-primary-2) 16%, transparent);
}
.wepro23-tag {
  font-family: var(--we-font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--we-primary-text);
}
.wepro23-item:nth-child(2n) .wepro23-tag {
  color: var(--we-primary-2);
}
.wepro23-card {
  background: var(--we-surface);
  border: 1px solid var(--we-border);
  border-radius: var(--we-radius-sm);
  padding: clamp(16px, 2.2vw, 24px);
  margin-top: 4px;
}
.wepro23-card h3 {
  font-family: var(--we-font-heading);
  font-weight: 600;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  margin: 0 0 0.3em;
}
.wepro23-card p {
  font-family: var(--we-font-body);
  color: var(--we-muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

/* --- Stats (stats-11) --- */
.wesx11-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(52px, 8vw, 112px) clamp(20px, 5vw, 48px);
}
.wesx11-head {
  text-align: center;
  margin-bottom: clamp(26px, 4vw, 44px);
}
.wesx11-kick {
  font-family: var(--we-font-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--we-accent);
}
.wesx11-title {
  font-family: var(--we-font-heading);
  font-weight: 400;
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  margin: 8px 0 0;
}
.wesx11-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.6vw, 18px);
}
.wesx11-tile {
  text-align: center;
  padding: clamp(22px, 3vw, 34px) 14px;
  background: var(--we-surface);
  border: 1px solid var(--we-border-glass, rgba(255, 255, 255, 0.12));
  border-radius: var(--we-radius);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--we-primary-2) 18%, transparent),
    0 16px 40px -20px var(--we-primary);
}
.wesx11-tile b {
  display: block;
  font-family: var(--we-font-heading);
  font-size: clamp(1.9rem, 5vw, 3rem);
  color: var(--we-primary-text);
  text-shadow: 0 0 18px color-mix(in srgb, var(--we-primary-2) 55%, transparent);
}
.wesx11-tile span {
  font-family: var(--we-font-body);
  color: var(--we-muted);
  font-size: 14px;
}
@media (max-width: 760px) {
  .wesx11-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Editor-Carousel (gbcap) --- */
.gbcap-title {
  margin: 0 0 clamp(28px, 4vw, 48px) !important;
}
.gbcap-carousel {
  position: relative;
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.gbcap-track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 2px 0;
  animation: gbcapMarquee 46s linear infinite;
}
.gbcap-carousel:focus-within .gbcap-track {
  animation-play-state: paused;
}
@keyframes gbcapMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 8px));
  }
}
.gbcap-card {
  flex: 0 0 300px;
  background: #0d0d0d;
  border: 1px solid rgba(239, 231, 240, 0.14);
  padding: clamp(22px, 2.4vw, 28px);
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}
.gbcap-card:hover {
  background: #121212;
  border-color: color-mix(in srgb, var(--we-primary) 40%, transparent);
}
.gbcap-ic {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--we-primary) 28%, transparent);
  color: var(--we-primary);
  margin-bottom: 16px;
  transition: background 0.2s ease;
}
.gbcap-ic svg {
  width: 22px;
  height: 22px;
}
.gbcap-card:hover .gbcap-ic {
  background: color-mix(in srgb, var(--we-primary) 10%, transparent);
}
.gbcap-card h3 {
  font-family: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  margin: 0 0 10px;
  color: #efe7f0;
  transition: color 0.2s ease;
}
.gbcap-card:hover h3 {
  color: var(--we-primary);
}
.gbcap-card p {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  color: #a7a2a7;
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 520px) {
  .gbcap-card {
    flex-basis: 250px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .gbcap-carousel {
    overflow-x: auto;
    -webkit-mask: none;
    mask: none;
    scroll-snap-type: x mandatory;
  }
  .gbcap-track {
    animation: none;
  }
  .gbcap-card {
    scroll-snap-align: start;
  }
  .gbcap-dup {
    display: none;
  }
}

/* --- Stimmen (testimonial-20) --- */
.wets20-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: clamp(52px, 8vw, 112px) clamp(20px, 5vw, 48px);
}
.wets20-head {
  text-align: center;
  margin-bottom: clamp(24px, 4vw, 40px);
}
.wets20-kick {
  font-family: var(--we-font-body);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--we-accent);
}
.wets20-title {
  font-family: var(--we-font-heading);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  margin: 8px 0 0;
}
.wets20-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.6vw, 18px);
}
.wets20-q {
  background: var(--we-surface);
  border: 1px solid var(--we-border);
  border-radius: var(--we-radius);
  padding: clamp(18px, 2.2vw, 24px);
  margin: 0;
}
.wets20-q blockquote {
  font-family: var(--we-font-heading);
  font-weight: 500;
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  line-height: 1.35;
  margin: 0 0 10px;
}
.wets20-q figcaption {
  font-family: var(--we-font-body);
  color: var(--we-primary-text);
  font-size: 13px;
}
@media (max-width: 820px) {
  .wets20-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .wets20-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Einblick: Live-Block (gbins-live) --- */
.gbins-live {
  margin-top: clamp(30px, 4.5vw, 52px);
}
.gbins-live-head {
  margin: 0 0 clamp(18px, 2.5vw, 26px);
}
.gbins-live-head h3 {
  font-family: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0.4rem 0 0.55rem;
  color: var(--we-text);
}
.gbins-live-head p {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  color: var(--we-muted);
  font-size: clamp(0.98rem, 1.4vw, 1.1rem);
  line-height: 1.6;
  max-width: 60ch;
  margin: 0;
}
.gbins-browser {
  border: 1px solid var(--we-border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--we-surface);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.gbins-browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--we-border);
}
.gbins-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--we-border);
  flex: 0 0 auto;
}
.gbins-url {
  margin-left: 12px;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.82rem;
  color: var(--we-muted);
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gbins-open {
  margin-left: auto;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--we-primary);
  text-decoration: none;
  white-space: nowrap;
  flex: 0 0 auto;
}
.gbins-open:hover {
  text-decoration: underline;
}
.gbins-browser-view {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--we-bg);
}
.gbins-browser-view iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@media (max-width: 768px) {
  .gbins-browser-view {
    aspect-ratio: 4/3;
  }
  .gbins-open {
    font-size: 0.78rem;
  }
}
@media (max-width: 480px) {
  .gbins-browser-view {
    aspect-ratio: 3/4;
  }
  .gbins-url {
    display: none;
  }
}

/* --- Einblick (gbins-wrap) --- */
.gbins-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding-inline: clamp(20px, 5vw, 48px);
}
.gbins-eyebrow {
  display: inline-block;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--we-primary);
  margin: 0 0 14px;
}
.gbins-title {
  font-family: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: #efe7f0;
}
.gbins-lead {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  color: #a7a2a7;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.6;
  max-width: 62ch;
  margin: 0 0 clamp(34px, 5vw, 52px);
}
.gbins-feat {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  margin-bottom: clamp(28px, 4vw, 44px);
}
.gbins-copy {
  min-width: 0;
}
.gbins-kicker {
  display: inline-block;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--we-primary-text);
  background: color-mix(in srgb, var(--we-primary) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--we-primary) 25%, transparent);
  padding: 5px 12px;
  margin: 0 0 16px;
}
.gbins-copy h3,
.gbins-cell h3 {
  font-family: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #efe7f0;
  margin: 0 0 12px;
}
.gbins-copy p,
.gbins-cell p {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  color: #b4afb4;
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 12px;
}
.gbins-copy p {
  max-width: 54ch;
}
.gbins-copy p.gbins-sub {
  color: #8f8a8f;
  font-size: 0.94rem;
}
.gbins-copy strong,
.gbins-cell strong {
  color: #efe7f0;
  font-weight: 600;
}
.gbins-hl {
  color: var(--we-primary);
}
.gbins-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
}
.gbins-chips li {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--we-primary-text);
  border: 1px solid color-mix(in srgb, var(--we-primary) 30%, transparent);
  padding: 5px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--we-primary) 4%, transparent);
}
.gbins-frame {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid color-mix(in srgb, var(--we-primary) 18%, transparent);
  background: #0d0d0d;
  box-shadow: 0 20px 60px -30px rgba(0, 0, 0, 0.85);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
  aspect-ratio: 16/10;
}
.gbins-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.gbins-frame:hover {
  border-color: color-mix(in srgb, var(--we-primary) 50%, transparent);
  box-shadow: 0 26px 70px -26px color-mix(in srgb, var(--we-primary) 28%, transparent);
  transform: translateY(-3px);
}
.gbins-frame:hover img {
  transform: scale(1.04);
}
.gbins-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
}
.gbins-cell {
  min-width: 0;
}
.gbins-cell .gbins-frame {
  margin-bottom: 18px;
}
@media (max-width: 820px) {
  .gbins-feat {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .gbins-duo {
    grid-template-columns: 1fr;
    gap: clamp(30px, 7vw, 42px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .gbins-frame,
  .gbins-frame img {
    transition: none;
  }
}

/* --- FAQ (gbfaq) --- */
.gbfaq-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding-inline: clamp(20px, 5vw, 48px);
}
.gbfaq-title {
  font-family: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 clamp(24px, 4vw, 44px);
}
.gbfaq-item {
  border-top: 1px solid rgba(239, 231, 240, 0.14);
}
.gbfaq-list .gbfaq-item:last-child {
  border-bottom: 1px solid rgba(239, 231, 240, 0.14);
}
.gbfaq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  font-family: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: #efe7f0;
  transition: color 0.18s ease;
}
.gbfaq-item summary::-webkit-details-marker {
  display: none;
}
.gbfaq-item summary:hover {
  color: var(--we-primary);
}
.gbfaq-plus {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  position: relative;
}
.gbfaq-plus::before,
.gbfaq-plus::after {
  content: "";
  position: absolute;
  background: var(--we-primary);
}
.gbfaq-plus::before {
  top: 10px;
  left: 0;
  width: 22px;
  height: 2px;
}
.gbfaq-plus::after {
  left: 10px;
  top: 0;
  width: 2px;
  height: 22px;
  transition: opacity 0.28s ease;
}
.gbfaq-item[open] .gbfaq-plus::after {
  opacity: 0;
}
.gbfaq-a {
  color: #a7a2a7;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 64ch;
  padding: 0 4px 24px;
  margin: 0;
}
@media (prefers-reduced-motion: reduce) {
  .gbfaq-plus::after {
    transition: none;
  }
}

/* --- CTA Video-Hintergrund (wecta17) --- */
.wecta17 {
  position: relative;
  overflow: hidden;
}
.wecta17 .gbvid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
}
.wecta17 .gbvid-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(95% 95% at 50% 42%, rgba(10, 10, 10, 0.62), rgba(10, 10, 10, 0.93));
}
.wecta17 .wecta17-wrap {
  position: relative;
  z-index: 2;
}
@media (prefers-reduced-motion: reduce) {
  .wecta17 .gbvid {
    display: none;
  }
}

/* --- CTA Formular (wecta17-form) --- */
.wecta17-form {
  max-width: 470px;
  margin: 6px auto 0;
  display: grid;
  gap: 12px;
  text-align: left;
}
.wecta17-frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.wecta17-form input,
.wecta17-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(239, 231, 240, 0.16);
  background: rgba(10, 10, 10, 0.6);
  color: #efe7f0;
  font: inherit;
  border-radius: 0;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}
.wecta17-form input::placeholder,
.wecta17-form textarea::placeholder {
  color: #7d7a7d;
}
.wecta17-form input:focus,
.wecta17-form textarea:focus {
  outline: none;
  border-color: var(--we-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--we-primary) 22%, transparent);
}
.wecta17-form textarea {
  resize: vertical;
  min-height: 118px;
}
.wecta17-form .wecta17-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.wecta17-form button[type="submit"] {
  margin-top: 2px;
  padding: 15px 30px;
  border: 0;
  border-radius: 999px;
  background: var(--we-primary);
  color: #04160b;
  font-family: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.18s ease;
  box-shadow: 0 0 30px color-mix(in srgb, var(--we-primary) 40%, transparent);
}
.wecta17-form button[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 46px color-mix(in srgb, var(--we-primary) 62%, transparent);
}
.wecta17-form button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: default;
  transform: none;
  box-shadow: none;
}
.wecta17-form .gb-contact-status {
  margin: 2px 0 0;
  font-size: 14px;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  min-height: 1.2em;
}
.wecta17-micro a {
  color: var(--we-primary-text);
  text-decoration: none;
}
.wecta17-micro a:hover {
  text-decoration: underline;
}
.wecta17-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 2px;
  text-align: left;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #a7a2a7;
}
.wecta17-consent input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 1px;
  accent-color: var(--we-primary);
  cursor: pointer;
}
.wecta17-consent a {
  color: var(--we-primary-text);
  text-decoration: underline;
}
@media (max-width: 480px) {
  .wecta17-frow {
    grid-template-columns: 1fr;
  }
}

/* --- CTA Wrap (wecta17-wrap) --- */
.wecta17-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(56px, 9vw, 132px) clamp(20px, 5vw, 48px);
  text-align: center;
  position: relative;
}
.wecta17-pill {
  display: inline-block;
  font-family: var(--we-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--we-primary-text);
  background: color-mix(in srgb, var(--we-primary-2) 10%, transparent);
  border: 1px solid var(--we-border);
  padding: 7px 16px;
  border-radius: 999px;
}
.wecta17-title {
  font-family: var(--we-font-heading);
  font-weight: 700;
  font-size: clamp(2.2rem, 6.5vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 22px 0 0;
}
.wecta17-lead {
  font-family: var(--we-font-body);
  color: var(--we-muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  margin: 20px auto 34px;
  max-width: 46ch;
}
.wecta17-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.wecta17-btn {
  font-family: var(--we-font-heading);
  font-weight: 600;
  background: var(--we-primary);
  color: var(--we-on-primary);
  padding: 15px 30px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 14px 44px -12px var(--we-primary);
}
.wecta17-ghost {
  font-family: var(--we-font-heading);
  font-weight: 600;
  color: var(--we-text);
  border: 1px solid var(--we-border);
  padding: 15px 26px;
  border-radius: 999px;
  text-decoration: none;
}
.wecta17-micro {
  font-family: var(--we-font-body);
  color: var(--we-muted);
  font-size: 13px;
  margin: 22px 0 0;
}
