﻿@font-face {
  font-family: Heebo;
  font-display: swap;
  src: url("../fonts/Heebo-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: Heebo;
  font-display: swap;
  src: url("../fonts/Heebo-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: Heebo;
  font-display: swap;
  src: url("../fonts/Heebo-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: Heebo;
  font-display: swap;
  src: url("../fonts/Heebo-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
}

:root {
  --gp-bg: #0a0a0a;
  --gp-bg-soft: #111111;
  --gp-panel: rgba(255, 255, 255, 0.05);
  --gp-panel-strong: rgba(255, 255, 255, 0.07);
  --gp-white: #ffffff;
  --gp-text: rgba(255, 255, 255, 0.84);
  --gp-muted: rgba(255, 255, 255, 0.62);
  --gp-orange: #ea4817;
  --gp-orange-light: #f4b642;
  --gp-border: rgba(255, 255, 255, 0.16);
  --gp-shadow: 0 0 7px 0 #ea4817;
  --gp-radius: 14px;
  --gp-container: 81.875rem;
  --gp-space-xs: 0.75rem;
  --gp-space-sm: 1rem;
  --gp-space-md: 1.5rem;
  --gp-space-lg: 2rem;
  --gp-space-xl: 2.75rem;
  --gp-space-2xl: 4rem;
  --gp-section-top: 56px;
  --gp-section-bottom: 96px;
}

@media (max-width: 900px) {
  :root {
    --gp-section-top: 40px;
    --gp-section-bottom: 60px;
  }
}

@media (max-width: 600px) {
  :root {
    --gp-section-top: 32px;
    --gp-section-bottom: 48px;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  min-width: 320px;
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(234, 72, 23, 0.08), transparent 24%),
    linear-gradient(180deg, #0d0d0d 0%, #050505 100%);
  color: var(--gp-white);
  font-family: Heebo, sans-serif;
  font-size: 16px;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wrapper > main {
  flex: 1 1 auto;
}

.site-header__container,
.section__container,
.hero__container {
  width: min(calc(100% - 30px), var(--gp-container));
  margin: 0 auto;
}

.button,
.button-empty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  border: 1px solid transparent;
  font-size: 1rem;
  font-weight: 700;
  line-height: 120%;
  text-align: center;
  white-space: nowrap;
  transition: background-color .3s ease, box-shadow .3s ease, border-color .3s ease, transform .3s ease, color .3s ease;
}

.button:hover,
.button-empty:hover {
  transform: translateY(-1px);
}

.button {
  background-color: var(--gp-orange);
  color: #000;
  padding: 12px 28px;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
}

.button-empty {
  border: 1px solid var(--gp-orange);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.92) 0%, rgba(60, 60, 60, 0.9) 100%);
  box-shadow: 0 0 7px 0 rgba(234, 72, 23, 0.95);
  color: #fff;
  padding: 11px 27px;
}

@media (any-hover: hover) {
  .button:hover {
    background-color: #ea6817;
    box-shadow: 0 0 5px 3px rgba(255, 255, 255, 0.78);
  }

  .button-empty:hover {
    border-color: var(--gp-orange);
    box-shadow: 0 0 10px 1px rgba(234, 72, 23, 0.96);
  }
}

.title,
.title-middle {
  margin: 0;
  font-weight: 600;
  line-height: 1.12;
}

.title span,
.title-middle span {
  background: linear-gradient(89deg, #ea4817 0%, #ed6b23 30.92%, #f4b642 50%, #ee7526 70.59%, #ea4817 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title {
  font-size: clamp(2.3rem, 3.15vw, 3.2rem);
}

.hero-title {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.highlight {
  color: #FF6A00;
}

.title-middle {
  font-size: clamp(1.65rem, 2.4vw, 2.2rem);
}

.title-small {
  margin: 0;
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1.2;
}

.text-right {
  text-align: right;
}

/* ==============================================
   HEADER – Desktop
   Sticky Glassmorphism | Logo | Nav | CTAs
============================================== */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease,
              box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid rgba(255, 102, 0, 0.22);
  box-shadow: 0 2px 32px rgba(0,0,0,0.45);
}

.site-header__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0;
  transition: padding 0.35s ease;
}

.site-header.is-scrolled .site-header__body {
  padding: 0.9rem 0;
}

/* Logo */
.site-header__logo img {
  width: 160px;
  height: auto;
  display: block;
  transition: opacity 0.2s;
}
.site-header__logo:hover img { opacity: 0.85; }

/* Nav (Desktop: reiner Durchlauf-Wrapper) */
.site-header__nav {
  margin-left: auto;
}

/* Mobile-only Elemente auf Desktop verstecken */
.site-header__mobile-ctas { display: none; }

/* Menü-Liste */
.site-header__menu {
  display: flex;
  align-items: center;
  margin: 0; padding: 0;
  list-style: none;
}

.site-header__menu li {
  display: flex;
  align-items: center;
}

/* Orange Separator zwischen Items */
.site-header__menu li + li::before {
  content: '';
  display: block;
  width: 1px;
  height: 14px;
  background: rgba(255, 102, 0, 0.45);
  margin: 0 1.6rem;
  flex-shrink: 0;
}

.site-header__menu a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  padding-bottom: 3px;
  transition: color 0.2s;
}

/* Hover-Unterstrich */
.site-header__menu a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: #ff6600;
  border-radius: 2px;
  transition: width 0.25s ease;
}
.site-header__menu a:hover { color: #fff; }
.site-header__menu a:hover::after { width: 100%; }

/* Active-State */
.site-header__menu .current-menu-item > a,
.site-header__menu .current_page_item > a {
  color: #ff6600;
  font-weight: 700;
}
.site-header__menu .current-menu-item > a::after,
.site-header__menu .current_page_item > a::after {
  width: 100%;
  box-shadow: 0 0 6px rgba(255,102,0,0.5);
}

/* CTA-Buttons (Desktop) */
.site-header__ctas {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 2rem;
}
.site-header__cta {
  padding: 0.6rem 1.6rem;
  min-height: 2.4rem;
  font-size: 0.92rem;
  white-space: nowrap;
}

/* Hamburger – auf Desktop versteckt */
.site-header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  margin-left: 1rem;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.site-header__toggle:hover {
  border-color: rgba(255,102,0,0.45);
  background: rgba(255,102,0,0.06);
}
.site-header__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}

/* Hamburger → X wenn Menü offen */
.site-header__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.site-header__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Overlay (Hintergrund-Dimmer) */
.site-header__overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.site-header__overlay.is-visible { opacity: 1; }

.hero {
  background: url("../img/hero-home-bg.svg") center/cover no-repeat;
  padding-top: 80px; /* Ausgleich für fixed Header */
}

/* Scroll-Offset für Anchor-Links (fixed Header) */
[id] {
  scroll-margin-top: 90px;
}

.hero__body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-width: 0;
  min-height: 0;
  gap: 2rem;
}

.hero__content {
  display: grid;
  align-content: center;
  padding: 4.4rem 0 4rem;
}

.hero__inner {
  position: relative;
  z-index: 4;
  max-width: 34rem;
}

.hero__copy {
  max-width: 38.5rem;
  padding-top: 6.1rem;
  padding-bottom: 6.3rem;
}

.hero__inner:not(:last-child) {
  margin-bottom: 3.5rem;
}

.hero__title {
  line-height: 1.06;
}

.hero__title:not(:last-child) {
  margin-bottom: 2.25rem;
}

.hero__title span {
  display: inline-block;
}

.hero-title {
  font-size: clamp(2.6rem, 3.4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-title:not(:last-child) {
  margin-bottom: 1.8rem;
}

.hero-title .highlight {
  display: inline-block;
  background: linear-gradient(89deg, #ea4817 0%, #ed6b23 30.92%, #f4b642 50%, #ee7526 70.59%, #ea4817 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__text {
  color: var(--gp-text);
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 23rem;
}

.hero__lead {
  color: var(--gp-text);
  font-size: 1.125rem;
  line-height: 1.72;
  max-width: 28rem;
}

.hero__text:not(:last-child) {
  margin-bottom: 2.7rem;
}

.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero__primary-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__cta-note {
  margin-top: 6px;
    font-size: 0.72rem;
  opacity: 0.7;
}

.hero__btn,
.features__btn {
  width: auto;
  max-width: fit-content;
}

.hero__btn {
  padding: 16px 46px;
}

.hero__trust {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.75rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 1rem 0.5rem 0.75rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  width: fit-content;
  opacity: 0;
  transform: translateY(10px);
  animation: badgeFadeIn 0.6s ease forwards;
}

.hero-badge:nth-child(1) { animation-delay: 0.6s; }
.hero-badge:nth-child(2) { animation-delay: 1.0s; }

@media (any-hover: hover) {
  .hero-badge:hover {
    background: rgba(255, 102, 0, 0.1);
    border-color: rgba(255, 102, 0, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.15);
    transition: all 0.25s ease;
  }
}

@keyframes badgeFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge__check {
  color: #ff6600;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}

.hero-badge__text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.3;
}

.hero-badge__text strong {
  color: #fff;
  font-weight: 600;
}

.hero__eyebrow {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  line-height: 1.4;
  margin-bottom: 0.8rem;
}

.hero__eyebrow span {
  display: inline;
  white-space: nowrap;
}

.hero__info {
  width: 100%;
  display: grid;
  gap: 0.85rem;
  padding: 1.5rem 1.75rem;
  border-radius: 0.625rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(60, 60, 60, 0.8) 100%);
  box-shadow: 0 0 5px 3px hsla(0, 0%, 100%, 0.9);
  line-height: 1.2;
  position: relative;
  z-index: 3;
}

.hero__info--top {
  max-width: 20rem;
  margin-left: auto;
  margin-bottom: 1rem;
  margin-right: -2rem;
}

.hero__info--bottom {
  max-width: 31rem;
  margin-left: auto;
  margin-top: 1.5rem;
  margin-right: -2.25rem;
}

.hero__info-title {
  font-weight: 700;
  font-size: 1.1875rem;
  line-height: 1.3;
  margin: 0;
}

.hero__info-text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.0625rem;
  line-height: 1.55;
  margin: 0;
}

.hero__sliders {
  position: absolute;
  inset: calc(var(--hero-visual-overscan) * -0.5) 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
  min-width: 0;
  min-height: 0;
  height: calc(100% + var(--hero-visual-overscan));
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  margin-left: 0;
}

.hero__slider {
  height: 100%;
  overflow: hidden;
}

.hero__wrapper {
  display: grid;
  gap: 0.9rem;
  align-content: start;
  transition-timing-function: linear;
}

.hero__slider-left .hero__wrapper {
  animation: heroColumnUp 58s linear infinite;
}

.hero__slider-right .hero__wrapper {
  animation: heroColumnDown 58s linear infinite;
}

.hero__slide {
  aspect-ratio: 3 / 4;
}

.hero__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.28),
    0 0 24px rgba(255, 106, 0, 0.08);
}

.hero__body--single {
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  grid-template-areas:
    "content visual"
    "stats stats";
  align-items: flex-start;
  gap: 28px 32px;
  padding: 32px 0 24px;
}

.hero__body--master {
  grid-template-columns: minmax(0, 1.14fr) minmax(360px, 0.9fr);
  grid-template-areas: "content visual";
  align-items: center;
  min-height: min(54rem, calc(100vh - 96px));
  gap: clamp(2rem, 3.5vw, 4.5rem);
  padding: 68px 0 72px;
}

.hero__content--compact {
  grid-area: content;
  padding: 0;
}

.hero__inner {
  max-width: 48rem;
}

.hero__body--master .hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  align-self: stretch;
}

.hero__body--master .hero__inner {
  width: 100%;
  max-width: 46rem;
  min-height: clamp(34rem, 40vw, 39rem);
  position: relative;
  padding-right: clamp(1.5rem, 4vw, 4rem);
}

.hero__stats {
  grid-area: stats;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.hero__stat {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 1.3rem;
  border-radius: 12px;
  border: 1px solid transparent;
  background:
    linear-gradient(#111, #111) padding-box,
    linear-gradient(120deg, transparent, rgba(255, 106, 0, 0.6), transparent) border-box;
  backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateY(20px);
  transition: all .4s ease;
  position: relative;
  overflow: hidden;
}

.hero__stat.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero__stat:nth-child(1).is-visible {
  transition-delay: 0.1s;
}

.hero__stat:nth-child(2).is-visible {
  transition-delay: 0.2s;
}

.hero__stat:nth-child(3).is-visible {
  transition-delay: 0.3s;
}

.hero__stat::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(
    500px circle at 50% -20%,
    rgba(255, 106, 0, 0.10),
    transparent 40%
  );
  opacity: 0.35;
}

.hero__stat-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.hero__stat-icon svg {
  width: 100%;
  height: 100%;
  stroke: #FF6A00;
}

.hero__stat-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.1;
}

.hero__stat-text {
    font-size: 0.72rem;
  opacity: 0.65;
  margin-top: 2px;
}

.hero__stat-content {
  display: flex;
  flex-direction: column;
}

.hero__stat:hover {
  transform: translateY(-3px);
  border: 1px solid rgba(255, 106, 0, 0.5);
  box-shadow:
    0 0 0 1px rgba(255, 106, 0, 0.15),
    0 8px 25px rgba(0, 0, 0, 0.5),
    0 0 25px rgba(255, 106, 0, 0.15);
}

.hero__visual {
  grid-area: visual;
  display: flex;
  justify-content: flex-end;
  align-self: center;
}

.hero__visual-shell {
  position: relative;
  --hero-visual-height: clamp(50rem, 90vh, 60rem);
  --hero-visual-overscan: 12rem;
  width: min(100%, 32rem);
  margin-top: -2.75rem;
  margin-bottom: -2.75rem;
  padding: 0;
}

.hero__visual-shell::before {
  content: "";
  position: absolute;
  inset: 4% -16% 4% -20%;
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 122, 26, 0.34), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(255, 166, 64, 0.18), transparent 28%),
    radial-gradient(circle at 78% 82%, rgba(255, 122, 26, 0.26), transparent 32%),
    radial-gradient(circle at 35% 60%, rgba(255, 93, 0, 0.16), transparent 38%);
  filter: blur(34px);
  pointer-events: none;
}

.hero__visual-frame {
  position: relative;
  overflow: hidden;
  height: var(--hero-visual-height);
  min-height: var(--hero-visual-height);
  padding: 0;
  border-radius: 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(28, 28, 28, 0.62) 0%, rgba(10, 10, 10, 0.78) 100%);
  box-shadow:
    0 0 4px 1px hsla(0, 0%, 100%, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 20px rgba(255, 255, 255, 0.05),
    0 0 56px rgba(255, 106, 0, 0.18),
    0 0 90px rgba(255, 122, 26, 0.12),
    0 28px 56px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.hero__visual-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 16%, rgba(255, 255, 255, 0) 84%, rgba(255, 255, 255, 0.02) 100%);
}

.hero__visual-fade {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  height: 4.5rem;
  pointer-events: none;
}

.hero__visual-fade--top {
  top: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.78) 45%, rgba(10, 10, 10, 0) 100%);
}

.hero__visual-fade--bottom {
  bottom: 0;
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.78) 45%, rgba(10, 10, 10, 0) 100%);
}

.hero__btns {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 0;
}

.hero__btns .button,
.hero__btns .button-empty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 226px;
}

.button--secondary {
  position: relative;
  border: 1px solid rgba(255, 106, 0, 0.5);
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.25s ease;
}

@media (any-hover: hover) {
  .hero-note:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.34);
    box-shadow:
      0 0 5px 2px hsla(0, 0%, 100%, 0.88),
      0 18px 40px rgba(0, 0, 0, 0.3);
  }

  .hero__btns .button:hover {
    transform: translateY(-1px);
  }

  .button--secondary:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 106, 0, 0.8);
    background: rgba(255, 106, 0, 0.05);
    color: #ffffff;
    box-shadow:
      0 0 0 1px rgba(255, 106, 0, 0.2),
      0 4px 12px rgba(0, 0, 0, 0.4),
      0 0 15px rgba(255, 106, 0, 0.15);
  }

  .button--secondary:hover svg {
    transform: translateX(2px);
    transition: 0.25s ease;
  }
}

.image-placeholder {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%),
    linear-gradient(135deg, rgba(234, 72, 23, 0.12) 0%, rgba(244, 182, 66, 0.06) 100%),
    #111;
  box-shadow: 0 0 24px rgba(234, 72, 23, 0.08);
}

.image-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 32%, rgba(255, 255, 255, 0.05) 32% 33%, transparent 33% 66%, rgba(255, 255, 255, 0.05) 66% 67%, transparent 67% 100%);
}

.image-placeholder::after {
  content: "";
  position: absolute;
  inset: auto -50px -60px auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(234, 72, 23, 0.2) 0%, rgba(234, 72, 23, 0) 72%);
}

.image-placeholder__label {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(234, 72, 23, 0.4);
  background: rgba(10, 10, 10, 0.74);
  color: var(--gp-muted);
    font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.image-placeholder--hero {
  width: min(100%, 34rem);
  aspect-ratio: 10 / 11;
}

.image-placeholder--mission {
  width: 100%;
  min-height: 420px;
}

.image-placeholder--network {
  width: 100%;
  min-height: 460px;
}



.section {
  padding: var(--gp-section-top) 0 var(--gp-section-bottom);
}

.section-heading {
  max-width: 900px;
  margin-bottom: var(--gp-xl);
}

.section-heading__eyebrow {
  margin: 0 0 1.75rem;
  color: var(--gp-orange);
    font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card-grid {
  display: grid;
  gap: 28px;
}

.card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.callout-card,
.page-shell__panel {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%),
    rgba(10, 10, 10, 0.92);
  box-shadow: 0 0 34px rgba(255, 255, 255, 0.09);
}

.info-card {
  padding: 32px;
}

.info-card p,
.callout-card p,
.page-shell__content {
  color: var(--gp-text);
  font-size: 1.0625rem;
  line-height: 1.6;
}

.info-card h3,
.callout-card h3 {
  margin-bottom: 18px;
}

.features__heading {
  margin-bottom: 42px;
  text-align: center;
}

.features__body {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}

.features__item {
  position: relative;
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 100%;
  padding: 42px;
  color: var(--gp-white);
  background: linear-gradient(180deg, rgba(34, 34, 34, 0.96) 0%, rgba(18, 18, 18, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.14), 0 0 30px rgba(234, 72, 23, 0.12);
  overflow: hidden;
  transition: background 0.32s ease, color 0.32s ease, box-shadow 0.32s ease, transform 0.32s ease, border-color 0.32s ease;
}

.features__item::before {
  content: "";
  position: absolute;
  inset: 0 26% auto 26%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(234, 72, 23, 0.96) 0%, rgba(255, 129, 66, 0.92) 100%);
}

.features__item::after {
  content: "";
  position: absolute;
  inset: auto -76px -92px auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(234, 72, 23, 0.18) 0%, rgba(234, 72, 23, 0) 74%);
  opacity: 0.72;
  pointer-events: none;
}

.features__icon {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  color: var(--gp-accent);
}

.features__icon svg {
  width: 100%;
  height: 100%;
}

.features__item-title {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(1.4rem, 1.8vw, 1.9rem);
  line-height: 1.18;
}

.features__item-text {
  position: relative;
  z-index: 1;
  margin: 0;
  color: inherit;
  font-size: 1.05rem;
  line-height: 1.55;
  opacity: 0.9;
}

.features__bottom {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem 2.5rem;
  margin-top: 40px;
}

@media (any-hover: hover) {
  .features__item:hover {
    color: #090909;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 244, 244, 0.97) 100%);
    border-color: rgba(255, 255, 255, 0.74);
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.28), 0 0 26px 4px rgba(234, 72, 23, 0.44);
    transform: translateY(-6px);
  }
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(760px, 1.38fr) minmax(360px, 0.82fr);
  gap: 40px;
  align-items: start;
}

.split-panel__content,
.callout-card {
  padding: 36px;
}

.split-panel__content--trust {
  padding-top: 12px;
  max-width: 760px;
}

.split-panel__lead {
  margin: 22px 0 0;
  color: var(--gp-text);
  font-size: 1.1875rem;
  line-height: 1.6;
}

.problem-block {
  position: relative;
  z-index: 2;
  padding-bottom: 56px;
}

.problem-block__layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.problem-block__title {
  margin: 0;
  font-size: clamp(2.2rem, 3.0vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.problem-block__title-break {
  display: block;
}

.problem-block__highlight,
.problem-block__highlight-inline {
  background: linear-gradient(89deg, #ea4817 0%, #ed6b23 30.92%, #f4b642 50%, #ee7526 70.59%, #ea4817 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.problem-block__lead {
  margin: 20px 0 0;
  max-width: none;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.1875rem;
  line-height: 1.6;
}

.problem-block__visual {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  gap: 1.25rem;
  width: 100%;
  padding-top: 0;
  perspective: 900px;
  z-index: 2;
}

.problem-block__title-break--mobile {
  display: none;
}

/* ---- Problem Block: Tablet ---- */
@media (max-width: 900px) {
  .problem-block__layout {
    gap: 1.5rem;
  }

  .problem-block__title {
    font-size: clamp(1.6rem, 4.5vw, 2.2rem);
  }

  .problem-block__visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
  }

  .problem-note--three {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
  }
}

/* ---- Problem Block: Mobile ---- */
@media (max-width: 600px) {
  .problem-block__title-break--mobile {
    display: block;
  }

  .problem-block__layout {
    gap: 1rem;
  }

  .problem-block__title {
    font-size: clamp(1.75rem, 7.5vw, 2.2rem);
  }

  .problem-block__lead {
    font-size: 1rem;
    margin-top: 12px;
  }

  .problem-block__visual {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .problem-note--three {
    max-width: none;
    grid-column: unset;
    justify-self: unset;
  }

  .problem-note__face--front {
    padding: 0.875rem 1rem;
  }

  .problem-note__icon-wrap {
    width: 36px;
    height: 36px;
    padding: 8px;
  }
}

.problem-block__visual::before,
.problem-block__visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(52px);
}

.problem-block__visual::before {
  top: 2rem;
  right: 3rem;
  width: 12rem;
  height: 12rem;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.18) 0%, rgba(255, 106, 0, 0) 74%);
}

.problem-block__visual::after {
  left: 1.75rem;
  bottom: 2.5rem;
  width: 11rem;
  height: 11rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0) 74%);
}

.problem-note {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  min-width: 0;
  flex: 1;
  align-self: auto;
  border-radius: 0.75rem;
  border: 1.5px solid transparent;
  background:
    transparent padding-box,
    linear-gradient(135deg, rgba(234, 72, 23, 0.70) 0%, rgba(244, 182, 66, 0.40) 45%, rgba(234, 72, 23, 0.08) 100%) border-box;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 8px 24px rgba(0, 0, 0, 0.36);
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    opacity 0.7s ease;
}

.problem-note::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.09) 0%,
    rgba(255, 255, 255, 0.03) 40%,
    transparent 65%
  );
}

.problem-note__inner {
  position: relative;
  border-radius: inherit;
  transform-style: preserve-3d;
  transition: transform 0.75s ease-in-out;
}

.problem-note__face {
  border-radius: inherit;
  background: linear-gradient(160deg, rgba(32, 32, 32, 0.92) 0%, rgba(18, 18, 18, 0.96) 100%);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.problem-note__face--front {
  position: relative;
  display: flex;
  padding: 1.1rem 1.25rem;
  overflow: hidden;
}

.problem-note__face--back {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.25rem 1.75rem;
  transform: rotateY(180deg);
}

.problem-note__face--back .problem-note__body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
}

.problem-note__face--back h3 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(234, 72, 23, 0.75);
  margin-bottom: 0.4rem;
}

.problem-note__face--back .problem-note__body p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.55;
  font-style: italic;
}

.problem-note__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.875rem;
  width: 100%;
}

.problem-note__icon-wrap {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  padding: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: transparent;
  border: 1.5px solid rgba(234, 72, 23, 0.45);
  box-shadow: 0 2px 6px rgba(234, 72, 23, 0.06);
  transition: box-shadow 0.4s ease, transform 0.3s ease;
}

.problem-note__text {
  flex: 1;
  min-width: 0;
  display: grid;
  gap: 0.45rem;
  align-content: center;
}

.problem-note__icon {
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gp-orange);
  filter: drop-shadow(0 0 3px rgba(234, 72, 23, 0.12));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.problem-note__icon circle,
.problem-note__icon path,
.problem-note__icon polyline {
  transition: stroke-dashoffset 0.6s ease;
}

.problem-note h3,
.problem-note p {
  position: relative;
  z-index: 1;
  margin: 0;
}

.problem-note p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.825rem;
  line-height: 1.45;
}

.problem-note.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.problem-note--one.is-visible {
  transition-delay: 0.06s;
}

.problem-note--two.is-visible {
  transition-delay: 0.16s;
}

.problem-note--three.is-visible {
  transition-delay: 0.26s;
}

@media (any-hover: hover) {
  .problem-note:hover {
    transform: translate3d(0, -2px, 0);
    box-shadow:
      0 0 0 1px rgba(234, 72, 23, 0.22),
      0 12px 28px rgba(0, 0, 0, 0.38);
  }

  .problem-note:hover .problem-note__icon-wrap {
    border-color: rgba(234, 72, 23, 0.85);
    box-shadow: 0 2px 10px rgba(234, 72, 23, 0.18);
    transform: translateY(-1px);
  }
  .problem-note:hover .problem-note__icon {
    transform: translateY(-2px);
    filter: drop-shadow(0 0 10px rgba(234, 72, 23, 0.70));
  }

  .problem-note:hover .problem-note__icon circle,
  .problem-note:hover .problem-note__icon path,
  .problem-note:hover .problem-note__icon polyline {
    stroke-dashoffset: 200;
  }

  .problem-note:hover .problem-note__inner {
    transform: rotateY(180deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .problem-note {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: none;
  }

  .problem-note__inner {
    transition: none;
  }
}

.solution-block {
  position: relative;
  isolation: isolate;
  overflow: clip;
  margin-top: -56px;
  padding-top: calc(var(--gp-section-top) + 56px);
}

.solution-block::before {
  content: "";
  position: absolute;
  inset: 2rem 0 0;
  background:
    radial-gradient(circle at 72% 50%, rgba(234, 72, 23, 0.14) 0%, rgba(234, 72, 23, 0) 31%),
    radial-gradient(circle at 84% 60%, rgba(255, 163, 87, 0.08) 0%, rgba(255, 163, 87, 0) 24%),
    linear-gradient(180deg, rgba(6, 6, 6, 0.45) 0%, rgba(6, 6, 6, 0.82) 100%),
    url('../img/Netzwerkverbindungen.webp') center/cover no-repeat;
  opacity: 0.34;
  pointer-events: none;
  z-index: 0;
}

.solution-block::after {
  content: "";
  position: absolute;
  top: 5rem;
  right: -3rem;
  width: 26rem;
  height: 26rem;
  background: radial-gradient(circle, rgba(234, 72, 23, 0.18) 0%, rgba(234, 72, 23, 0) 70%);
  filter: blur(30px);
  pointer-events: none;
  z-index: 0;
}

.solution-block .section__container {
  position: relative;
  z-index: 1;
}

.solution-block__heading {
  max-width: 42rem;
}

.solution-block__title {
  margin: 0;
  display: grid;
  gap: 0.1em;
  font-size: clamp(2.35rem, 3.4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.solution-block__title-highlight,
.solution-block__lead-highlight {
  color: transparent;
  background: linear-gradient(89deg, #ea4817 0%, #ed6b23 30.92%, #f4b642 50%, #ee7526 70.59%, #ea4817 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.solution-block__lead {
  margin: 1.6rem 0 0;
  max-width: 41rem;
  color: var(--gp-text);
  font-size: 1.18rem;
  line-height: 1.62;
}

.solution-block__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(24rem, 1fr);
  gap: 3.75rem;
  align-items: start;
  margin-top: 2.85rem;
}

.solution-block__content {
  max-width: 42rem;
}

.solution-block__steps {
  position: relative;
  display: grid;
  gap: 5.5rem;
}

.solution-step {
  position: relative;
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr);
  gap: 0.95rem 1.2rem;
  align-items: start;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.58s ease, transform 0.58s ease;
}

.solution-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 3.35rem;
  bottom: -5.5rem;
  left: 1.32rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(234, 72, 23, 0.72) 0%, rgba(234, 72, 23, 0.18) 100%);
  box-shadow: 0 0 12px rgba(234, 72, 23, 0.14);
  pointer-events: none;
}

.solution-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.solution-step:nth-child(2).is-visible {
  transition-delay: 0.08s;
}

.solution-step:nth-child(3).is-visible {
  transition-delay: 0.16s;
}

.solution-step__icon-shell {
  position: relative;
  display: grid;
  place-items: center;
  width: 2.85rem;
  height: 2.85rem;
  margin-left: -0.15rem;
  z-index: 1;
}

.solution-step__icon-shell::after {
  content: "";
  position: absolute;
  inset: 0.45rem;
  border-radius: 1rem;
  background: radial-gradient(circle, rgba(234, 72, 23, 0.18) 0%, rgba(234, 72, 23, 0) 72%);
  filter: blur(10px);
  opacity: 0.7;
  z-index: -1;
}

.solution-step__icon {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter:
    drop-shadow(0 0 10px rgba(234, 72, 23, 0.2))
    drop-shadow(0 12px 18px rgba(0, 0, 0, 0.18));
}

.solution-step__copy {
  padding-top: 0.08rem;
}

.solution-step__title {
  margin: 0;
  font-size: clamp(1.6rem, 2vw, 2.15rem);
  line-height: 1.16;
}

.solution-step__text {
  margin: 0.7rem 0 0;
  max-width: 31rem;
  color: var(--gp-muted);
  font-size: 1.05rem;
  line-height: 1.62;
}

.solution-block__actions--aside {
  margin: 1.5rem 0 0 0;
  justify-self: start;
}

.solution-block__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 226px;
  min-height: 48px;
}

.solution-block__aside {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: -12.1rem;
}

.solution-block__aside-footer {
  width: 100%;
}

.solution-block__media-shell,
.solution-block__proof {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition:
    opacity 0.62s ease,
    transform 0.62s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}

.solution-block__media-shell.is-visible,
.solution-block__proof.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.solution-block__proof.is-visible {
  transition-delay: 0.12s;
}

.solution-block__media-shell {
  position: relative;
  width: 100%;
  margin-left: 0;
  aspect-ratio: 16 / 9;
  border-radius: 1.05rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow:
    0 0 8px 3px hsla(0, 0%, 100%, 0.74),
    0 18px 40px rgba(0, 0, 0, 0.34),
    0 0 32px rgba(234, 72, 23, 0.13);
  backdrop-filter: blur(7px);
}

.solution-block__media-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 6, 6, 0.16) 0%, rgba(6, 6, 6, 0.58) 100%),
    radial-gradient(circle at 74% 68%, rgba(234, 72, 23, 0.38) 0%, rgba(234, 72, 23, 0) 34%);
  pointer-events: none;
  z-index: 1;
}

.solution-block__media-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 -42px 70px rgba(0, 0, 0, 0.42), inset 0 18px 38px rgba(255, 255, 255, 0.04);
  pointer-events: none;
  z-index: 1;
}

.solution-block__media-shell:hover {
  border-color: rgba(255, 255, 255, 0.36);
  box-shadow:
    0 0 10px 4px hsla(0, 0%, 100%, 0.8),
    0 20px 48px rgba(0, 0, 0, 0.38),
    0 0 42px rgba(234, 72, 23, 0.18);
}

@media (any-hover: hover) {
  .solution-block__cta:hover {
    transform: translateY(-1px);
  }
}

.solution-block__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.solution-block__media--placeholder {
  background:
    linear-gradient(180deg, rgba(14, 14, 14, 0.78) 0%, rgba(6, 6, 6, 0.92) 100%),
    radial-gradient(circle at 78% 72%, rgba(234, 72, 23, 0.34) 0%, rgba(234, 72, 23, 0) 32%),
    url('../img/Netzwerkverbindungen.webp') center/cover no-repeat;
}

.solution-block__media-overlay {
  position: absolute;
  top: 1.15rem;
  left: 1.15rem;
  z-index: 2;
  display: grid;
  gap: 0.35rem;
}

.solution-block__media-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 2.7rem;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid rgba(234, 72, 23, 0.48);
  background: rgba(8, 8, 8, 0.66);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.solution-block__media-story {
  margin: 0;
  max-width: 15rem;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.solution-block__play {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  padding: 0;
  cursor: pointer;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.88) 0%, rgba(3, 3, 3, 0.94) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 18px rgba(234, 72, 23, 0.22);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.28s ease, transform 0.28s ease, box-shadow 0.22s ease;
}

.solution-block__media-shell:hover .solution-block__play,
.solution-block__play.is-paused {
  opacity: 1;
  transform: scale(1);
}

.solution-block__play:hover {
  box-shadow: 0 0 26px rgba(234, 72, 23, 0.42);
  border-color: rgba(255, 255, 255, 0.32);
}

.solution-block__play-icon {
  width: 1.2rem;
  height: 1.2rem;
  fill: var(--gp-orange);
}

.solution-block__play-icon--play {
  transform: translateX(0.08rem);
  display: block;
}

.solution-block__play-icon--pause {
  display: none;
}

.solution-block__play.is-paused .solution-block__play-icon--play {
  display: none;
}

.solution-block__play.is-paused .solution-block__play-icon--pause {
  display: block;
}

.solution-block__proof {
  position: relative;
  z-index: 3;
  display: grid;
  width: min(calc(100% + 1.5rem), 20rem);
  margin: -2.5rem 0 0 -1.5rem;
  padding: 1rem 1.2rem 0.9rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.78) 0%, rgba(8, 8, 8, 0.82) 100%);
  box-shadow:
    0 0 4px 2px hsla(0, 0%, 100%, 0.4),
    0 0 22px rgba(0, 0, 0, 0.28),
    0 0 18px rgba(234, 72, 23, 0.07);
  backdrop-filter: blur(10px);
}

.solution-block__proof::before {
  content: "";
  position: absolute;
  inset: auto -2rem -2rem auto;
  width: 10rem;
  height: 10rem;
  background: radial-gradient(circle, rgba(234, 72, 23, 0.18) 0%, rgba(234, 72, 23, 0) 70%);
  filter: blur(14px);
  pointer-events: none;
}

.solution-block__proof-label {
  display: inline-block;
  margin-bottom: 0.62rem;
  color: var(--gp-orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.solution-block__proof-title {
  margin: 0;
  max-width: none;
  font-size: clamp(1.1rem, 1.4vw, 1.28rem);
  font-weight: 700;
  line-height: 1.18;
}

.solution-block__proof-list {
  display: grid;
  gap: 0.42rem;
  margin: 0.8rem 0 0;
  padding: 0 0 0 1.2rem;
  list-style: none;
  color: var(--gp-text);
  font-size: 0.92rem;
  line-height: 1.46;
}

.solution-block__proof-list li {
  position: relative;
  padding-left: 1.35rem;
}

.solution-block__proof-list li::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0.18rem;
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 50%;
  background: rgba(234, 72, 23, 0.96);
  box-shadow: 0 0 8px rgba(234, 72, 23, 0.34);
}

/* ---- Solution Block: Tablet ---- */
@media (max-width: 900px) {
  /* 1 Spalte, Aside darunter */
  .solution-block__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Steps kompakter */
  .solution-block__steps {
    gap: 3.5rem;
  }

  .solution-step:not(:last-child)::after {
    bottom: -3.5rem;
  }

  /* Aside: kein negativer Margin, normale Reihenfolge */
  .solution-block__aside {
    width: 100%;
    margin-top: 0;
    align-items: flex-start;
  }

  /* Aside-Footer: links überlappend über Video-Unterkante, Desktop-Breite */
  .solution-block__aside-footer {
    width: fit-content;
    min-width: 20rem;
    max-width: min(100%, 24rem);
    margin: -2rem 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 4;
  }

  /* Proof-Card: volle Wrapper-Breite */
  .solution-block__proof {
    width: 100%;
    margin: 0;
  }

  /* CTA: gleiche linke Kante wie Card */
  .solution-block__actions--aside {
    margin-top: 1.25rem;
    margin-left: 1.5rem;
    justify-self: start;
    width: auto;
    display: block;
  }

  .solution-block__cta {
    min-width: 226px;
    width: auto;
  }
}

/* ---- Solution Block: Mobile ---- */
@media (max-width: 600px) {
  .solution-block__title {
    font-size: clamp(2rem, 7.5vw, 2.5rem);
  }

  .solution-block__lead {
    font-size: 1rem;
    margin-top: 1.1rem;
  }

  .solution-block__layout {
    gap: 2rem;
    margin-top: 2rem;
  }

  .solution-block__steps {
    gap: 3rem;
  }

  .solution-step {
    grid-template-columns: 2.8rem minmax(0, 1fr);
    gap: 0.85rem 1rem;
  }

  .solution-step:not(:last-child)::after {
    top: 2.7rem;
    bottom: -3rem;
    left: 1.07rem;
  }

  .solution-step__icon-shell {
    width: 2.5rem;
    height: 2.5rem;
  }

  .solution-step__title {
    font-size: 1.4rem;
  }

  .solution-step__text {
    font-size: 0.98rem;
    margin-top: 0.55rem;
  }

  .solution-block__aside {
    margin-top: 3.6rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  /* Overlay: Label deutlich über Videokante schieben */
  .solution-block__media-shell {
    overflow: visible;
  }

  .solution-block__media,
  .solution-block__media--placeholder {
    border-radius: 1.05rem;
  }

  .solution-block__media-shell::before,
  .solution-block__media-shell::after {
    border-radius: 1.05rem;
  }

  .solution-block__media-overlay {
    top: -3.2rem;
    left: 0.6rem;
    gap: 1.6rem; /* Story-Text deutlich unter Label ins Video schieben */
  }

  .solution-block__media-label {
    min-height: 2rem;
    padding: 0 0.85rem;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    background: rgba(6, 6, 6, 0.92);
    border-color: rgba(234, 72, 23, 0.72);
    box-shadow: 0 0 12px rgba(234, 72, 23, 0.22);
  }

  .solution-block__media-story {
    max-width: 13rem;
    font-size: 0.9rem;
    line-height: 1.25;
  }

  /* Play-Button: kleiner, nur bei Pause sichtbar */
  .solution-block__play {
    width: 2.5rem;
    height: 2.5rem;
  }

  /* Aside-Footer: Breite am Inhalt, wie Desktop overlapping – halbe Überlappung, leicht rechts */
  .solution-block__aside-footer {
    width: fit-content;
    min-width: 12rem;
    max-width: min(100%, 22rem);
    margin: -1.1rem 0 0 1.8rem;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 4;
  }

  .solution-block__proof {
    width: 100%;
    margin: 0;
    padding: 0.75rem 1rem 0.7rem;
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.48) 0%, rgba(8, 8, 8, 0.54) 100%);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow:
      0 0 3px 1px hsla(0, 0%, 100%, 0.16),
      0 8px 20px rgba(0, 0, 0, 0.18),
      0 0 10px rgba(234, 72, 23, 0.04);
  }

  .solution-block__proof-label {
    font-size: 0.65rem;
    margin-bottom: 0.35rem;
  }

  .solution-block__proof-title {
    font-size: 1rem;
  }

  .solution-block__proof-list {
    font-size: 0.82rem;
    gap: 0.35rem;
    margin-top: 0.5rem;
  }

  .solution-block__actions--aside {
    width: 100%;
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    align-self: stretch;
  }

  .solution-block__cta {
    width: fit-content;
    min-width: 0;
    padding-left: 1.8rem;
    padding-right: 1.8rem;
  }
}

.guidelines__body {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1.875rem;
}

.guidelines__content {
  max-width: 46rem;
  width: 100%;
}

.guidelines__title {
  margin-bottom: 2.5rem;
}

.guidelines__items {
  display: grid;
  gap: 1.875rem;
}

.guidelines__items:not(:last-child) {
  margin-bottom: 3.5rem;
}

.guidelines__item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  align-content: start;
  gap: 1rem 2.5rem;
}

.guidelines__item-title {
  margin: 0;
  font-size: clamp(1.55rem, 2vw, 2.2rem);
  line-height: 1.22;
}

.guidelines__item:not(:last-child) .guidelines__item-text {
  position: relative;
  padding: 0.375rem 0 1.625rem 5.5rem;
}

.guidelines__item:not(:last-child) .guidelines__item-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.5rem;
  width: 0.125rem;
  height: 100%;
  background-color: var(--gp-orange);
}

.guidelines__item-icon {
  width: 3rem;
  height: 3rem;
}

.guidelines__item-icon img,
.guidelines__item-icon svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guidelines__item-text {
  grid-column: span 2;
  padding: 0.375rem 0 0 5.5rem;
  font-size: 1.3125rem;
  line-height: 1.6;
  color: var(--gp-text);
}

.guidelines__aside {
  max-width: 21.3125rem;
  width: 100%;
  padding-top: 0;
}

.guidelines__aside-img {
  max-width: 21.3125rem;
  width: 100%;
  display: grid;
  place-content: center;
  margin: 0 auto 2.5rem auto;
  border-radius: 0.625rem;
  overflow: hidden;
  box-shadow: 0 0 9px 3px hsla(0, 0%, 100%, 0.6);
  background-color: rgba(234, 72, 23, 0.03);
}

.guidelines__aside-img img {
  aspect-ratio: 341 / 392;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guidelines__aside-title {
  margin: 0 0 1.875rem;
  font-size: clamp(2rem, 2.6vw, 2.6rem);
  font-weight: 700;
  line-height: 1.28;
  margin-bottom: 2rem;
}

.guidelines__aside-text {
  font-size: 1.3125rem;
  line-height: 1.6;
  color: var(--gp-text);
  max-width: none;
}

/* ── Block 4: Vertrauen & Ergebnisse ────────────────── */

/* Section */
.b4-trust {
  position: relative;
  padding: 32px 0 var(--gp-section-bottom);
  background-color: #060606;
  background-image: url('../img/block4-bg.webp');
  background-repeat: no-repeat;
  background-position: 72% top;
  background-size: 65% auto;
  overflow: hidden;
}

.b4-trust::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #060606 0%, rgba(6,6,6,0.88) 40%, rgba(6,6,6,0.35) 65%, rgba(6,6,6,0) 100%);
  pointer-events: none;
  z-index: 0;
}

.b4-trust .section__container {
  position: relative;
  z-index: 1;
}

.b4-trust__inner {
  display: flex;
  flex-direction: column;
}

/* Head */
.b4-trust__head {
  max-width: 46rem;
}

.b4-trust__head::after {
  content: "";
  display: block;
  width: min(100%, 40rem);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, transparent 0%, var(--gp-orange) 50%, transparent 100%);
  margin-top: 2rem;
}

.b4-trust__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1.75rem;
}

.b4-trust__title {
  margin: 0 0 1.4rem;
}

.b4-trust__sub {
  max-width: 52rem;
  color: var(--gp-text);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
}

/* Cards Grid: 4 gleichbreite Spalten, Glascard in Zeile 2 */
.b4-trust__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: min(100%, 66rem);
  margin-top: 3.5rem;
}

/* ── Animationen ── */

/* Divider zeichnet sich von Mitte nach außen */
@keyframes b4-divider-draw {
  from { clip-path: inset(0 50% 0 50%); }
  to   { clip-path: inset(0 0% 0 0%); }
}

/* Shimmer-Sweep über die Card */
@keyframes b4-shimmer {
  0%   { transform: translateX(-120%) skewX(-15deg); opacity: 0; }
  30%  { opacity: 1; }
  100% { transform: translateX(220%) skewX(-15deg); opacity: 0; }
}

/* Float – sanftes Schweben */
@keyframes b4-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

/* ── Base Card ── */
.b4-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem 2rem;
  border-radius: 22px;
  border: 1px solid rgba(234, 72, 23, 0.25);
  background: #0c0c0c;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    inset 0 0 0 1px rgba(234,72,23,0.08),
    0 0 35px rgba(234,72,23,0.12),
    0 8px 40px rgba(0,0,0,0.6),
    0 0 20px rgba(255,255,255,0.05);
  opacity: 0;
  transform: translateY(1.5rem);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

/* Einblenden + Float starten */
.b4-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  animation: b4-float 4s ease-in-out infinite;
}

/* Versetzt für natürlicheres Schweben */
.b4-card.is-visible:nth-child(2) { animation-delay: 0.8s; }
.b4-card.is-visible:nth-child(3) { animation-delay: 1.6s; }
.b4-card.is-visible:nth-child(4) { animation-delay: 2.4s; }

/* Orange Top-Bar */
.b4-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(89deg, #ea4817 0%, #f4b642 50%, #ea4817 100%);
  opacity: 0.65;
  z-index: 2;
  transition: opacity 0.35s ease;
}

/* Shimmer-Streifen */
.b4-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  z-index: 3;
  pointer-events: none;
  animation: b4-shimmer 5s ease-in-out infinite;
}

/* Verzögerter Shimmer pro Card */
.b4-card:nth-child(2)::after { animation-delay: 1.2s; }
.b4-card:nth-child(3)::after { animation-delay: 2.4s; }
.b4-card:nth-child(4)::after { animation-delay: 3.6s; }

/* Radialer Glow – eigenes Element da ::after belegt */
.b4-card__center::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 70% at 50% 60%, rgba(234,72,23,0.15), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.b4-card > * {
  position: relative;
  z-index: 1;
}

@media (any-hover: hover) {
  .b4-card:hover {
    border-color: rgba(234, 72, 23, 0.5);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.15),
      inset 0 0 0 1px rgba(234,72,23,0.2),
      0 0 55px rgba(234,72,23,0.22),
      0 14px 48px rgba(0,0,0,0.7),
      0 0 28px rgba(255,255,255,0.08);
    animation-play-state: paused;
  }
  .b4-card:hover::before { opacity: 1; }
}

/* Eyebrow – absolut oben */
.b4-card__eyebrow {
  position: absolute;
  top: 1rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  margin: 0;
  z-index: 2;
}

/* Center-Wrapper: 4 fixe Zeilen – Zahl/Icon | Divider | Titel | Label */
.b4-card__center {
  position: relative;
  display: grid;
  grid-template-rows: 5rem 1.5rem auto auto;
  width: 100%;
  justify-items: center;
  align-items: center;
  gap: 0.3rem;
}

/* Zahl – Zeile 1 (5rem) */
.b4-card__value {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(2.2rem, 3.2vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--gp-orange);
}

/* Divider – Zeile 2, mit Draw-Animation */
.b4-card__divider {
  width: 70%;
  height: 1px;
  min-height: 1px;
  border: none;
  background: linear-gradient(to right, transparent 0%, rgba(234,72,23,0.8) 50%, transparent 100%);
  margin: 0;
  display: block;
  align-self: center;
  clip-path: inset(0 50% 0 50%);
}

.b4-card.is-visible .b4-card__divider {
  animation: b4-divider-draw 0.8s ease forwards;
  animation-delay: 0.3s;
}

/* Titel – Zeile 3 */
.b4-card__title {
  margin: 0;
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #fff;
}

/* Label – Zeile 4 */
.b4-card__label {
  margin: 0;
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
  line-height: 1.4;
}

/* Großes Icon – Zeile 1 (5rem) */
.b4-card__icon-lg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.b4-card__icon-lg img {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 14px rgba(234,72,23,0.5));
}

/* Glascard – Pill-Stil wie Hero-Badge */
.b4-trust__note {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  margin-top: 2.5rem;
  padding: 0.55rem 1.25rem 0.55rem 0.9rem;
  border-radius: 2rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.b4-trust__note-check {
  color: #ea4817;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}

.b4-trust__note-text {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.3;
}

.b4-trust__note-highlight {
  color: var(--gp-orange);
  font-weight: 600;
}

/* Mobile-Umbrüche für Pill-Note – auf Desktop unsichtbar */
.b4-mob-br { display: none; }

/* Tablet */
@media (max-width: 1100px) {
  .b4-trust__cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .b4-trust {
    background-position: top right;
    background-size: 75% auto;
  }
  .b4-trust__head {
    max-width: 28rem;
  }
  .b4-trust__sub {
    max-width: 28rem;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .b4-trust {
    background-position: top right;
    background-size: 100% auto;
  }
  .b4-trust__cards {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  /* Card kompakter auf Mobile */
  .b4-card {
    padding: 2.5rem 1.25rem 1.75rem;
  }
  .b4-card__center {
    grid-template-rows: 4rem 1.2rem auto auto;
    gap: 0.5rem;
  }
  .b4-card__value {
    font-size: 2.8rem;
  }
  .b4-card__icon-lg img {
    width: 3rem;
    height: 3rem;
  }
  .b4-card__divider {
    width: 50%;
  }
  .b4-card__title {
    font-size: 1.15rem;
  }
  .b4-card__label {
    font-size: 0.82rem;
  }

  /* Pill-Note mobil: Glascard – weißer Border, Glow, setzt sich von den 4 Cards ab */
  .b4-trust__note {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    margin-top: 1rem;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(16px) saturate(1.3);
    -webkit-backdrop-filter: blur(16px) saturate(1.3);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.18),
      0 4px 24px rgba(0,0,0,0.4),
      0 0 18px rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
    justify-content: center;
  }
  .b4-trust__note-check {
    display: none;
  }
  .b4-trust__note-text {
    font-size: 0.88rem;
    line-height: 1.55;
    text-align: center;
    width: 100%;
  }
  .b4-mob-br { display: block; }
}

/* ── Vorteile Block ──────────────────────────────────── */

.vorteile-block {
  position: relative;
  padding: var(--gp-section-top) 0 var(--gp-section-bottom);
  overflow: hidden;
}

.vorteile-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(234,72,23,0.06), transparent 55%);
  pointer-events: none;
}

.vorteile-block__header {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 52rem;
  margin: 0 auto 3.5rem;
}

.vorteile-block__title {
  margin: 0 0 1rem;
  font-size: clamp(2.15rem, 2.9vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
}

.vorteile-block__highlight {
  color: transparent;
  background: linear-gradient(89deg, #ea4817 0%, #ed6b23 30.92%, #f4b642 50%, #ee7526 70.59%, #ea4817 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vorteile-block__sub {
  margin: 0 auto;
  max-width: 42rem;
  color: var(--gp-text);
  font-size: 1.05rem;
  line-height: 1.55;
}

.vorteile-block__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

/* ── Vorteile Card ── */

.vorteile-card {
  position: relative;
  padding: 2.5rem;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    linear-gradient(180deg, rgba(34,34,34,0.85) 0%, rgba(14,14,14,0.95) 100%);
  overflow: hidden;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.22,0.61,0.36,1),
    transform 0.7s cubic-bezier(0.22,0.61,0.36,1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

/* Orange Top-Bar */
.vorteile-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22%;
  right: 22%;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(89deg, #ea4817 0%, #ed6b23 30%, #f4b642 50%, #ee7526 70%, #ea4817 100%);
  opacity: 0.65;
  transition: opacity 0.35s ease;
}

/* Corner Glow */
.vorteile-card::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234,72,23,0.08) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.vorteile-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.vorteile-card:hover {
  border-color: rgba(255,255,255,0.18);
  box-shadow:
    0 0 14px rgba(255,255,255,0.08),
    0 0 40px rgba(234,72,23,0.1);
  transform: translateY(-5px);
}

.vorteile-card:hover::before {
  opacity: 1;
}

.vorteile-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1.4rem;
}

.vorteile-card__icon svg {
  width: 100%;
  height: 100%;
}

.vorteile-card__title {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--gp-white);
}

.vorteile-card__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.58;
  color: var(--gp-muted);
}

/* Staggered reveal delays */
.vorteile-card:nth-child(1) { transition-delay: 0s; }
.vorteile-card:nth-child(2) { transition-delay: 0.08s; }
.vorteile-card:nth-child(3) { transition-delay: 0.16s; }
.vorteile-card:nth-child(4) { transition-delay: 0.24s; }
.vorteile-card:nth-child(5) { transition-delay: 0.32s; }
.vorteile-card:nth-child(6) { transition-delay: 0.4s; }

/* ── Vorteile Responsive ── */

@media (max-width: 991px) {
  .vorteile-block__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .vorteile-card {
    padding: 2rem;
  }
}

@media (max-width: 575px) {
  .vorteile-block__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .vorteile-block__header {
    text-align: left;
  }

  .vorteile-card {
    padding: 1.5rem 1.25rem;
  }
}

/* ── Einsatzbereiche Block ──────────────────────────── */

.einsatz-block {
  position: relative;
  padding: var(--gp-section-top) 0 var(--gp-section-bottom);
  overflow: hidden;
}

.einsatz-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(234,72,23,0.04), transparent 50%);
  pointer-events: none;
}

.einsatz-block__header {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 52rem;
  margin: 0 auto 3.5rem;
}

.einsatz-block__title {
  margin: 0 0 1rem;
  font-size: clamp(2.15rem, 2.9vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
}

.einsatz-block__highlight {
  color: transparent;
  background: linear-gradient(89deg, #ea4817 0%, #ed6b23 30.92%, #f4b642 50%, #ee7526 70.59%, #ea4817 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.einsatz-block__sub {
  margin: 0 auto;
  max-width: 42rem;
  color: var(--gp-text);
  font-size: 1.05rem;
  line-height: 1.55;
}

/* ── Expandable Columns ── */

.einsatz-columns {
  display: flex;
  gap: 14px;
}

.einsatz-col {
  position: relative;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.4rem 2rem;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(22,22,22,0.6) 0%, rgba(10,10,10,0.9) 100%);
  overflow: hidden;
  cursor: default;
  opacity: 0;
  transform: translateY(24px);
  transition:
    flex 0.6s cubic-bezier(0.22,0.61,0.36,1),
    opacity 0.4s ease,
    transform 0.5s cubic-bezier(0.22,0.61,0.36,1),
    border-color 0.4s ease,
    background 0.4s ease;
}

.einsatz-col.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Accent line – left edge */
.einsatz-col__accent {
  position: absolute;
  left: 0;
  top: 25%;
  bottom: 25%;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(234,72,23,0.3), transparent);
  border-radius: 2px;
  transition: opacity 0.4s ease, top 0.4s ease, bottom 0.4s ease, background 0.4s ease;
}

/* Head: always visible (title + tags) */
.einsatz-col__head {
  position: relative;
  z-index: 1;
}

.einsatz-col__title {
  margin: 0 0 0.7rem;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--gp-white);
  transition: color 0.35s ease;
}

.einsatz-col__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.einsatz-col__tags li {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.32);
  transition: color 0.3s ease;
}

.einsatz-col__tags li::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(234,72,23,0.4);
  margin-right: 0.4rem;
  vertical-align: middle;
}

/* Detail: description – hidden by default on desktop */
.einsatz-col__detail {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.55s cubic-bezier(0.22,0.61,0.36,1),
    opacity 0.4s ease 0.08s;
}

.einsatz-col__text {
  margin: 1.2rem 0 0;
  font-size: 0.95rem;
  line-height: 1.62;
  color: var(--gp-muted);
}

/* ── Hover State (Desktop) ── */

@media (hover: hover) and (min-width: 992px) {
  /* Inaktive Cards: zurücknehmen */
  .einsatz-columns:hover .einsatz-col {
    flex: 0.85 1 0;
    opacity: 0.55;
  }

  .einsatz-columns:hover .einsatz-col .einsatz-col__title {
    color: rgba(255,255,255,0.6);
  }

  /* Aktive Card: hervorheben */
  .einsatz-columns:hover .einsatz-col:hover {
    flex: 1.3 1 0;
    opacity: 1;
    border-color: rgba(255,122,0,0.35);
    background: linear-gradient(180deg, rgba(36,34,32,0.9) 0%, rgba(16,14,12,0.97) 100%);
    transform: scale(1.02);
  }

  .einsatz-columns:hover .einsatz-col:hover .einsatz-col__title {
    color: #ffffff;
  }

  .einsatz-col:hover .einsatz-col__accent {
    top: 12%;
    bottom: 12%;
    background: linear-gradient(180deg, transparent, rgba(234,72,23,0.55), rgba(244,182,66,0.35), transparent);
  }

  .einsatz-col:hover .einsatz-col__detail {
    max-height: 8rem;
    opacity: 1;
  }

  .einsatz-col:hover .einsatz-col__tags li {
    color: rgba(255,255,255,0.55);
  }
}

/* Staggered reveal */
.einsatz-col:nth-child(1) { transition-delay: 0s; }
.einsatz-col:nth-child(2) { transition-delay: 0.12s; }
.einsatz-col:nth-child(3) { transition-delay: 0.24s; }

/* ── Einsatz Responsive ── */

@media (max-width: 991px) {
  .einsatz-columns {
    flex-direction: column;
    gap: 1rem;
    max-width: 34rem;
    margin: 0 auto;
  }

  .einsatz-col {
    padding: 2rem 1.75rem;
  }

  .einsatz-col__detail {
    max-height: none;
    opacity: 1;
  }

  .einsatz-col__accent {
    top: 18%;
    bottom: 18%;
  }
}

@media (max-width: 575px) {
  .einsatz-block__header {
    text-align: left;
  }

  .einsatz-col {
    padding: 1.5rem 1.25rem;
  }
}

/* ─────────────────────────────────────────────
   Erfolgsgeschichten / Success Stories
   ───────────────────────────────────────────── */

.gp-success {
  position: relative;
  padding: 72px 0 96px;
  overflow: hidden;
}

.gp-success__inner {
  position: relative;
  max-width: var(--gp-container);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Top: 2-Column Layout ── */

.gp-success__top {
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: 28px;
  align-items: center;
}

/* ── Intro (Left) ── */

.gp-success__intro {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.gp-success__intro.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.gp-success__eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gp-orange);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.gp-success__eyebrow.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.gp-success__title {
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--gp-white);
  margin: 0 0 24px;
}

.gp-success__highlight {
  background: linear-gradient(89deg, #ea4817 0%, #ed6b23 30.92%, #f4b642 50%, #ee7526 70.59%, #ea4817 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gp-success__text {
  width: 100%;
  display: block;
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gp-muted);
}

/* ── Stage (Right) ── */

.gp-success__stage {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 28px;
}

/* ── Card ── */

.gp-success__card {
  position: relative;
  flex: 1;
  border-radius: 28px;
  overflow: visible;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) 0.15s,
              transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) 0.15s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  height: 100%;
  min-height: 380px;
}

.gp-success__card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.gp-success__card-glow {
  position: absolute;
  inset: -1px;
  border-radius: 29px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(255, 122, 0, 0.55) 0%,
    rgba(234, 72, 23, 0.30) 30%,
    rgba(255, 122, 0, 0.22) 50%,
    rgba(234, 72, 23, 0.35) 70%,
    rgba(255, 122, 0, 0.50) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}

.gp-success__card::before {
  display: none;
}

.gp-success__card-content {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(36, 34, 32, 0.45) 0%, rgba(16, 14, 12, 0.92) 100%),
    rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 28px;
  padding: 0;
  min-height: 380px;
}

/* ── Quote mark ── */

.gp-success__quote-mark {
  display: none;
}

/* ── Slides wrapper + crossfade ── */

.gp-success__slides-wrap {
  position: relative;
  height: 380px;
  min-height: 380px;
  overflow: hidden;
}

.gp-success__slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 38%;
  grid-template-rows: 1fr;
  height: 100%;
  min-height: 380px;
  opacity: 0;
  visibility: hidden;
  will-change: opacity;
  pointer-events: none;
}

.gp-success__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gp-success__slide.is-entering {
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) 0.15s;
}

.gp-success__slide.is-leaving {
  opacity: 0;
  visibility: visible;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.gp-success__slide .gp-success__media img {
  transition: transform 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.gp-success__slide.is-active .gp-success__media img {
  transform: scale(1);
}

.gp-success__slide.is-entering .gp-success__media img {
  transform: scale(1.05);
}

/* ── Copy (left inside card) ── */

.gp-success__copy {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: 1fr auto;
  height: 100%;
  padding: 36px 32px 28px;
}

.gp-success__quote {
  align-self: start;
  font-size: 1.05rem;
  line-height: 1.72;
  color: var(--gp-white);
  font-weight: 400;
  margin: 0;
}

.gp-success__fixed-bottom {
  align-self: end;
  flex-shrink: 0;
}

.gp-success__divider {
  flex-shrink: 0;
  width: 40px;
  height: 2px;
  background: var(--gp-orange);
  margin-bottom: 14px;
  border-radius: 2px;
}

.gp-success__meta {
  flex-shrink: 0;
  margin-bottom: 24px;
}

.gp-success__name {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gp-white);
  margin-bottom: 2px;
}

.gp-success__role {
  display: block;
  font-size: 0.78rem;
  color: var(--gp-muted);
  line-height: 1.5;
}

.gp-success__company {
  display: block;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.4;
}

/* ── Facts bar ── */

.gp-success__facts {
  flex-shrink: 0;
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 14px;
}

.gp-success__fact {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  position: relative;
  padding: 0 14px;
}

.gp-success__fact:first-child {
  padding-left: 0;
}

.gp-success__fact:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 2px;
  bottom: 2px;
  width: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.gp-success__fact strong {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}

.gp-success__fact span {
  font-size: 0.66rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ── Media (right inside card) ── */

.gp-success__media {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 0 28px 28px 0;
  margin-left: -48px;
}

.gp-success__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.gp-success__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.25) 35%, rgba(10, 10, 10, 0) 100%);
  pointer-events: none;
}

/* ── Navigation arrows ── */

.gp-success__nav {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.gp-success__nav:hover {
  border-color: var(--gp-orange);
  color: var(--gp-orange);
  background: rgba(234, 72, 23, 0.08);
}

/* ── Dots ── */

.gp-success__dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.gp-success__dots button {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.gp-success__dots button.is-active {
  background: var(--gp-orange);
  transform: scale(1.2);
}

.gp-success__dots button:hover:not(.is-active) {
  background: rgba(255, 255, 255, 0.25);
}

/* ── Responsive: Erfolgsgeschichten ── */

@media (max-width: 1199px) {
  .gp-success__top {
    grid-template-columns: 30% 1fr;
    gap: 36px;
  }

  .gp-success__card-content {
    min-height: 360px;
  }

  .gp-success__slides-wrap {
    height: 360px;
  }
}

@media (max-width: 991px) {
  .gp-success {
    padding: 56px 0 72px;
  }

  .gp-success__top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .gp-success__intro {
    text-align: center;
    max-width: 540px;
    margin: 0 auto;
  }

  .gp-success__text {
    max-width: 100%;
  }

  .gp-success__stage {
    max-width: 680px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .gp-success {
    padding: 44px 0 56px;
  }

  .gp-success__inner {
    padding: 0 1.25rem;
  }

  .gp-success__nav {
    display: none;
  }

  .gp-success__slide {
    grid-template-columns: 1fr;
  }

  .gp-success__slides-wrap {
    height: auto;
  }

  .gp-success__slide.is-active {
    position: relative;
  }

  .gp-success__copy {
    padding: 52px 22px 22px;
  }

  .gp-success__media {
    height: 200px;
    border-radius: 0 0 28px 28px;
  }

  .gp-success__media::after {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.2) 50%, rgba(10, 10, 10, 0.1) 100%);
  }

  .gp-success__card-content {
    min-height: auto;
  }

  .gp-success__dots {
    bottom: -4px;
  }
}

@media (max-width: 575px) {
  .gp-success__title {
    font-size: 1.75rem;
  }

  .gp-success__quote {
    font-size: 0.92rem;
  }

  .gp-success__facts {
    flex-direction: column;
    gap: 8px;
  }

  .gp-success__fact {
    padding: 0;
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }

  .gp-success__fact:not(:last-child)::after {
    display: none;
  }
}

/* ══════════════════════════════════════
   Promise Block
   ══════════════════════════════════════ */

.gp-promise {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: #0b0b0b;
}

/* ── Background Image ── */
.gp-promise__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  overflow: hidden;
}

.gp-promise__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: promiseZoom 14s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes promiseZoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.03); }
}

/* ── Soft fade from left ── */
.gp-promise__fade {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 100%;
  background: linear-gradient(to right, #0b0b0b 40%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* ── Dark overlay for contrast ── */
.gp-promise__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 11, 0.35);
  z-index: 1;
  pointer-events: none;
}

/* ── Parallax scroll ── */
.gp-promise__bg-img {
  transition: transform 0.1s linear;
}

/* ── Inner container ── */
.gp-promise__inner {
  position: relative;
  z-index: 3;
  max-width: var(--gp-container, 1200px);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Content ── */
.gp-promise__content {
  max-width: 620px;
}

.gp-promise__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gp-orange, #ea4817);
  margin-bottom: 20px;
}

.gp-promise__title {
  font-family: 'Heebo', sans-serif;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800;
  line-height: 1.18;
  color: var(--gp-white, #ffffff);
  margin: 0 0 20px;
}

.gp-promise__title strong {
  font-weight: 800;
}

.gp-promise__highlight {
  color: transparent;
  background: linear-gradient(89deg, #ea4817 0%, #ed6b23 30.92%, #f4b642 50%, #ee7526 70.59%, #ea4817 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gp-promise__statement {
  font-size: 18px;
  line-height: 1.7;
  color: var(--gp-muted, #a0a0a0);
  margin: 0 0 36px;
}

/* ── Button ── */
.gp-promise__btn {
  display: inline-block;
  margin-bottom: 32px;
}

/* ── Button Shine Effect ── */
.gp-promise__btn {
  position: relative;
  overflow: hidden;
}

.gp-promise__btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 100%
  );
  animation: btnShine 3.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes btnShine {
  0%   { left: -100%; }
  60%  { left: 120%; }
  100% { left: 120%; }
}

/* ── Meta row ── */
.gp-promise__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}

.gp-promise__meta li {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.32);
}

.gp-promise__meta li::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(234, 72, 23, 0.4);
  margin-right: 0.4rem;
  vertical-align: middle;
}

/* ── Reveal Animation ── */
[data-promise-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-promise-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .gp-promise {
    padding: 80px 0;
  }
  .gp-promise__bg {
    width: 55%;
  }
  .gp-promise__fade {
    width: 75%;
  }
}

@media (max-width: 768px) {
  .gp-promise {
    padding: 0;
  }
  .gp-promise__bg {
    position: relative;
    width: 100%;
    height: 260px;
  }
  .gp-promise__fade {
    display: none;
  }
  .gp-promise__overlay {
    display: none;
  }
  .gp-promise__bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to top, #0b0b0b, transparent);
  }
  .gp-promise__inner {
    padding: 40px 20px 56px;
  }
  .gp-promise__content {
    max-width: 100%;
  }
  .gp-promise__title {
    font-size: 26px;
  }
  .gp-promise__statement {
    font-size: 16px;
  }
}

/* ══════════════════════════════════════
   FAQ Block
   ══════════════════════════════════════ */

.gp-faq {
  position: relative;
  padding: 120px 0 40px;
}

.gp-faq__inner {
  display: grid;
  grid-template-columns: minmax(280px, 480px) 1fr;
  gap: 80px;
  max-width: var(--gp-container, 1200px);
  margin: 0 auto;
  padding: 0 24px;
  align-items: start;
}

/* ── Left: Intro ── */
.gp-faq__intro {
  /* static, no sticky */
}

.gp-faq__eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gp-orange, #ea4817);
  margin-bottom: 20px;
}

.gp-faq__title {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--gp-white, #ffffff);
  margin: 0 0 16px;
}

.gp-faq__sub {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gp-muted, #a0a0a0);
  margin: 0;
}

.gp-faq__highlight {
  color: transparent;
  background: linear-gradient(89deg, #ea4817 0%, #ed6b23 30.92%, #f4b642 50%, #ee7526 70.59%, #ea4817 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Right: FAQ List ── */
.gp-faq__list {
  display: flex;
  flex-direction: column;
  max-width: 560px;
}

.gp-faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  padding-left: 16px;
}

.gp-faq__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--gp-orange, #ea4817);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}

.gp-faq__item.is-open::before {
  transform: scaleY(1);
}

/* ── Question Button ── */
.gp-faq__question {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 20px 0;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Heebo', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gp-white, #ffffff);
  transition: color 0.25s ease;
}

.gp-faq__question:hover {
  color: var(--gp-orange, #ea4817);
}

.gp-faq__question:hover .gp-faq__text {
  transform: translateX(4px);
}

.gp-faq__item.is-open .gp-faq__question {
  color: var(--gp-orange, #ea4817);
}

/* ── Number ── */
.gp-faq__num {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.2);
  min-width: 22px;
  transition: color 0.25s ease;
}

.gp-faq__item.is-open .gp-faq__num {
  color: var(--gp-orange, #ea4817);
}

/* ── Question Text ── */
.gp-faq__text {
  flex: 1;
  transition: transform 0.25s ease;
}

/* ── Plus / Minus Icon ── */
.gp-faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-left: 12px;
}

.gp-faq__icon::before,
.gp-faq__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--gp-orange, #ea4817);
  border-radius: 1px;
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

.gp-faq__icon::before {
  width: 12px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}

.gp-faq__icon::after {
  width: 1.5px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.gp-faq__item.is-open .gp-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

/* ── Answer ── */
.gp-faq__answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(6px);
  transition:
    max-height 0.3s ease-out,
    opacity 0.25s ease 0.06s,
    transform 0.25s ease 0.06s;
}

.gp-faq__item.is-open .gp-faq__answer {
  opacity: 1;
  transform: translateY(0);
}

.gp-faq__answer p {
  margin: 0;
  padding: 0 0 20px;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--gp-muted, #a0a0a0);
  max-width: 580px;
}

/* ── Reveal Animation ── */
[data-faq-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-faq-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .gp-faq__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .gp-faq__intro {
    position: static;
  }
}

@media (max-width: 767px) {
  .gp-faq {
    padding: 72px 0;
  }

  .gp-faq__title {
    font-size: 1.7rem;
  }

  .gp-faq__question {
    font-size: 1rem;
    padding: 22px 0;
  }
}

/* ══════════════════════════════════════
   Page Shell
   ══════════════════════════════════════ */

.page-shell {
  padding-top: 70px;
}

.page-shell__panel {
  padding: 34px;
}

.page-shell__header {
  margin-bottom: 24px;
}

.page-shell__content > *:first-child {
  margin-top: 0;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER – wird neu aufgebaut
═══════════════════════════════════════════════════════════════ */

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #0b0b0b;
}

.site-footer__container {
  position: relative;
  z-index: 1;
  width: min(1200px, 100% - 48px);
  margin: 0 auto;
  padding: 0 0 32px 0;
}

@media (max-width: 1100px) {
  .site-header__container,
  .section__container,
  .site-footer__container,
  .hero__container {
    width: min(calc(100% - 32px), var(--gp-container));
  }

  /* ==============================================
     HEADER – Mobile (max-width: 1100px)
     Option A: Kompaktes Dropdown unter dem Header
  ============================================== */

  .site-header__body { padding: 0.9rem 0; }
  .site-header__logo img { width: 130px; }

  /* Hamburger anzeigen, Desktop-CTAs ausblenden */
  .site-header__toggle { display: flex; }
  .site-header__ctas   { display: none; }

  /* Dropdown-Panel direkt unter dem Header */
  .site-header__nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    z-index: 99;
    margin: 0;
    background: rgba(13, 13, 13, 0.97);
    backdrop-filter: blur(16px) saturate(1.3);
    -webkit-backdrop-filter: blur(16px) saturate(1.3);
    border-top: 1px solid rgba(255, 102, 0, 0.2);
    border-bottom: 1px solid rgba(255, 102, 0, 0.2);
    box-shadow: 0 12px 32px rgba(0,0,0,0.5);
    display: none;
    flex-direction: column;
    padding: 8px 0 0;
  }

  .site-header__nav.is-open { display: flex; }

  /* Menü-Liste */
  .site-header__menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 0 20px;
    list-style: none;
  }
  .site-header__menu li {
    display: block;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .site-header__menu li:last-child { margin-bottom: 8px; }
  .site-header__menu li + li::before { display: none; }
  .site-header__menu a {
    display: block;
    padding: 16px 0;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.88);
    text-decoration: none;
  }
  .site-header__menu a::after { display: none; }
  .site-header__menu a:hover,
  .site-header__menu .current-menu-item > a,
  .site-header__menu .current_page_item > a { color: #ff6600; }

  /* CTA-Buttons – gleiche Breite, nebeneinander */
  .site-header__mobile-ctas {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    padding: 16px 20px 22px;
    border-top: 1px solid rgba(255,102,0,0.15);
  }
  .site-header__mobile-cta {
    flex: 1;
    max-width: 180px;
    white-space: nowrap;
    text-align: center;
    padding: 11px 16px;
    font-size: 0.88rem;
    font-weight: 700;
  }

  .hero__body,
  .split-panel,
  .guidelines__body,
  .features__body,
  .card-grid--three {
    grid-template-columns: 1fr;
  }

  .features__bottom {
    flex-direction: column;
    align-items: center;
  }

  .hero__content {
    padding: 1.875rem 0 1.25rem;
  }

  .hero__content--compact {
    padding: 0;
  }

  .hero__info:first-child {
    margin-bottom: 1.25rem;
    margin-right: 0;
  }

  .hero__info:last-child {
    margin-top: 1.25rem;
    margin-right: 0;
  }

  .hero__sliders {
    margin-left: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero__visual {
    justify-content: stretch;
  }

  .hero__body--single {
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "visual"
      "stats";
    gap: 24px;
  }

  .hero__body--master {
    min-height: auto;
    gap: 32px;
    padding: 36px 0 28px;
  }

  .hero__body--master .hero__content {
    display: block;
    align-self: auto;
  }

  .hero__inner,
  .hero__body--master .hero__inner {
    display: block;
    max-width: 100%;
    min-height: 0;
    padding-right: 0;
  }

  .hero__copy {
    max-width: 100%;
    padding: 0;
  }

  .section-heading__eyebrow {
    margin-bottom: 1.25rem;
  }

  .hero__eyebrow {
    gap: 0.15rem;
  }

  .hero-title {
    order: 2;
    font-size: clamp(1.9rem, 8vw, 2.4rem);
  }

  .hero__lead {
    order: 3;
    max-width: 34rem;
  }

  .hero__btns {
    margin-bottom: 1.9rem;
  }

  .hero__visual-shell {
    --hero-visual-height: 43rem;
    --hero-visual-overscan: 10rem;
    width: min(100%, 28rem);
    margin: 0 auto;
    margin-bottom: 0;
    padding: 0;
  }

  .hero__visual-frame {
    height: var(--hero-visual-height);
    min-height: var(--hero-visual-height);
    padding: 0;
  }

  .hero__trust {
    margin-top: 1.25rem;
    gap: 0.5rem;
  }

  .hero-badge {
    width: 100%;
    max-width: 26rem;
    padding: 0.5rem 0.85rem 0.5rem 0.7rem;
  }

  .hero-badge__text {
    font-size: 0.78rem;
  }

  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .guidelines__item {
    gap: 0.875rem 1rem;
  }

  .guidelines__item-text,
  .guidelines__item:not(:last-child) .guidelines__item-text {
    padding-left: 4rem;
  }

  .guidelines__item:not(:last-child) .guidelines__item-text::before {
    left: 1.125rem;
  }
}

@keyframes heroColumnDown {
  from {
    transform: translateY(calc(-50% - 0.59375rem));
  }
  to {
    transform: translateY(0);
  }
}

@keyframes heroColumnUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(calc(-50% - 0.59375rem));
  }
}
/* ========================================
   GP FOOTER – 3-Spalten / PAMO CI
   ======================================== */

.gp-footer {
  background: #0d0d0d;
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent 0%, rgba(255,102,0,0.45) 50%, transparent 100%) 1;
}

/* ---- Hauptleiste ---- */
.gp-footer__main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 52px 40px 44px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr;
  gap: 56px;
  align-items: start;
  grid-auto-rows: min-content;
}

/* ---- Spalte 1: Brand ---- */
.gp-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-self: start;
  padding-top: 0;
  margin-top: 0;
}

.gp-footer__logo-link {
  display: inline-block;
  line-height: 0;
}

.gp-footer__logo-img {
  width: 200px;
  height: auto;
  display: block;
}

.gp-footer__logo {
  font-family: 'Heebo', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  display: block;
}

.gp-footer__logo sup {
  font-size: 0.55em;
  vertical-align: super;
  font-weight: 600;
}

.gp-footer__claim {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.6;
  margin: 0;
  max-width: 340px;
}

/* ---- Spalte 2+3: Nav-Titel ---- */
.gp-footer__nav-title {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #ff6600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ---- Spalte 2: Navigation ---- */
.gp-footer__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gp-footer__nav a {
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: color 0.18s, transform 0.18s;
}

.gp-footer__nav a:hover {
  color: #ff6600;
  transform: translateX(4px);
}

/* ---- Spalte 3: Kontakt ---- */
.gp-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gp-footer__addr {
  font-style: normal;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 12px;
}

.gp-footer__contact-link {
  display: block;
  font-size: 0.90rem;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  margin-bottom: 5px;
  transition: color 0.18s;
}

.gp-footer__contact-link:hover {
  color: #ff6600;
}

/* ---- Social ---- */
.gp-footer__social {
  margin-top: 16px;
  display: flex;
  gap: 12px;
}

.gp-footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.60);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 7px 13px;
  transition: color 0.18s, border-color 0.18s, background 0.18s;
}

.gp-footer__social-link:hover {
  color: #ff6600;
  border-color: rgba(255,102,0,0.40);
  background: rgba(255,102,0,0.06);
}

/* ---- Bottom-Bar ---- */
.gp-footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 40px 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.gp-footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.32);
}

.gp-footer__legal {
  display: flex;
  gap: 18px;
  align-items: center;
}

.gp-footer__legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.18s;
}

.gp-footer__legal a:hover {
  color: #ff6600;
}

/* ---- Responsive: Tablet ---- */
@media (max-width: 900px) {
  .gp-footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    padding: 40px 28px 32px;
  }

  .gp-footer__brand {
    grid-column: 1 / -1;
  }

  .gp-footer__bottom {
    padding: 14px 28px 18px;
  }
}

/* ---- Responsive: Mobile ---- */
@media (max-width: 600px) {
  .gp-footer__main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 20px 24px;
  }

  .gp-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 20px 16px;
  }

  .gp-footer__legal {
    gap: 14px;
  }
}
