/* ============================================================
   GROWIT — Das Band
   Ein dunkler Bereich laeuft immer ueber die volle Breite und hat
   einen Farbverlauf. Dunkle Kaesten auf hellem Grund gibt es nicht.

   Zwei Teile:
   1) .gw-band — der frei verwendbare Abschnitt (Cockpit, Produkt).
   2) .lsec--cta — der Abschluss jeder Seite wird zum selben Band.

   Wird nach grund.css geladen, sonst greift dessen
   "background: none !important" auf den Abschnitt durch.
   ============================================================ */

:root { --gw-band-ease: cubic-bezier(.32, .72, 0, 1); }

/* Der Verlauf steht nur an einer Stelle, damit beide Baender gleich sind. */
.gw-band,
.lsec--cta {
  background:
    radial-gradient(56% 68% at 84% 6%, rgba(39, 230, 255, .17), rgba(39, 230, 255, 0) 62%),
    linear-gradient(132deg, #150A52 0%, #280F91 40%, #3348D9 78%, #2F5FC4 100%) !important;
}

.gw-band,
.lsec--cta {
  position: relative;
  overflow: hidden;
  color: #fff;
}
/* Der Innenabstand steht hier fuer beide Baender, nicht in leistungen.css.
   Sonst haette der Abschluss auf partner.html und termin.html keinen, denn
   dort wird leistungen.css gar nicht geladen. */
.gw-band,
.lsec--cta { padding: clamp(70px, 9vw, 124px) 0; }

/* Rasterlinien, weich ausmaskiert. Kein Leuchten, nur Struktur. */
.gw-band::before,
.lsec--cta::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: radial-gradient(74% 84% at 44% 18%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(74% 84% at 44% 18%, #000 0%, transparent 78%);
}
.gw-band > .shell { position: relative; z-index: 2; }

/* ------------------------------------------------------------
   Der Abschluss jeder Seite: aus der Karte wird das Band
   ------------------------------------------------------------ */
.lsec--cta > .shell { position: relative; z-index: 2; }
.lsec--cta .cta-card {
  background: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: clamp(16px, 2vw, 30px) 0 !important;
}
.lsec--cta .cta-card::before,
.lsec--cta .cta-card::after { display: none !important; }

/* ------------------------------------------------------------
   Inhalt im Band
   ------------------------------------------------------------ */
.gw-band__grid {
  display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: clamp(30px, 4.5vw, 66px); align-items: center;
}
.gw-band__mark {
  display: block; font-size: 12px; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: #8FE9F8; margin-bottom: 18px;
}
.gw-band h2 {
  margin: 0; color: #fff; font-size: clamp(1.9rem, 3.6vw, 3rem);
  font-weight: 700; line-height: 1.08; letter-spacing: -.03em; max-width: 18ch;
}
/* .88 statt .82 — dieselbe Rechnung wie beim Abschluss in site.css: der
   Verlauf hellt nach rechts unten auf, .82 ergab dort nur 4,4:1. */
.gw-band__text { margin: 20px 0 0; color: rgba(255, 255, 255, .88); font-weight: 300; line-height: 1.76; max-width: 52ch; }
.gw-band__was {
  margin: 26px 0 0; padding: 0; list-style: none;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px 26px;
}
.gw-band__was li { position: relative; padding-left: 24px; color: rgba(255, 255, 255, .9); font-size: .93rem; font-weight: 300; line-height: 1.5; }
.gw-band__was li::before {
  content: ""; position: absolute; left: 0; top: .52em; width: 14px; height: 14px;
  border-radius: 50%; background: rgba(39, 230, 255, .14); box-shadow: inset 0 0 0 1.4px #27E6FF;
}
.gw-band__was li::after {
  content: ""; position: absolute; left: 3.9px; top: calc(.52em + 4.2px);
  width: 6.4px; height: 3.4px; border-left: 1.5px solid #27E6FF; border-bottom: 1.5px solid #27E6FF;
  transform: rotate(-45deg);
}
.gw-band__tun { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.gw-band__tun .btn svg { width: 18px; height: 18px; flex: 0 0 18px; }

/* Der zweite Knopf im Band: nur Umriss, damit er nicht mit dem ersten konkurriert. */
.gw-band__tun .btn--klar,
.lsec--cta .btn--klar {
  background: transparent; color: #fff; white-space: nowrap;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .42);
  transition: background .5s var(--gw-band-ease), box-shadow .5s var(--gw-band-ease), transform .5s var(--gw-band-ease);
}
.gw-band__tun .btn--klar:hover,
.lsec--cta .btn--klar:hover {
  background: rgba(255, 255, 255, .1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .66);
  transform: translateY(-2px);
}

/* ------------------------------------------------------------
   Helle Programmansicht im dunklen Band
   ------------------------------------------------------------ */
.gw-app { border-radius: 18px; overflow: hidden; background: #fff; box-shadow: 0 50px 110px -56px rgba(0, 0, 0, .6); }
.gw-app__leiste {
  display: flex; align-items: center; gap: 8px;
  padding: 13px 16px; background: #F6F9FF; border-bottom: 1px solid rgba(40, 15, 145, .08);
}
.gw-app__leiste i { width: 8px; height: 8px; border-radius: 50%; background: rgba(40, 15, 145, .16); }
.gw-app__leiste span { margin-left: 8px; color: #4F5872; font-size: .74rem; letter-spacing: .03em; }
.gw-app__inhalt { padding: 18px; }
.gw-app__zeile {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 14px; border-radius: 12px; background: #F4F7FF;
  border: 1px solid rgba(40, 15, 145, .06); margin-bottom: 9px;
}
.gw-app__zeile:last-child { margin-bottom: 0; }
.gw-app__zeile b { flex: 0 0 auto; color: #280F91; font-size: .8rem; font-weight: 500; }
.gw-app__frei { flex: 1; }
.gw-app__zeile em {
  font-style: normal; font-size: .7rem; font-weight: 600; letter-spacing: .03em;
  padding: 3px 9px; border-radius: 6px; background: rgba(82, 113, 255, .12); color: #3348D9;
}
.gw-app__zeile em.wartet { background: rgba(40, 15, 145, .06); color: #4F5872; }
.gw-app__balken { position: relative; flex: 1; height: 6px; border-radius: 999px; background: rgba(40, 15, 145, .09); overflow: hidden; }
.gw-app__balken i { position: absolute; inset: 0 auto 0 0; border-radius: 999px; background: linear-gradient(90deg, #5271FF, #27E6FF); width: var(--w, 60%); }

@media (max-width: 1000px) {
  .gw-band__grid { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 760px) {
  .gw-band__was { grid-template-columns: minmax(0, 1fr); }
  .gw-band__tun .btn { width: 100%; justify-content: center; }
}
