/* GraphX – eigene Modals für die "MEHR INFOS"-Popups (Preise & Leistungen) */
.gxpop-overlay {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(20, 12, 35, 0.72);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.gxpop-overlay.gxpop-open { opacity: 1; pointer-events: auto; }

.gxpop-card {
  position: relative; width: min(640px, 100%);
  max-height: 88vh; overflow-y: auto;
  background: #2b2b2b; color: #ededed;
  border-radius: 16px; box-shadow: 0 24px 70px rgba(0,0,0,.55);
  transform: translateY(18px) scale(.98); opacity: 0;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), opacity .3s ease;
  font-family: 'montserrat', 'avenir-lt-w01_35-light1475496', sans-serif;
}
.gxpop-open .gxpop-card { transform: none; opacity: 1; }

.gxpop-hero { width: 100%; aspect-ratio: 931 / 237; overflow: hidden; border-radius: 16px 16px 0 0; background: #1f1f1f; }
.gxpop-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }

.gxpop-content { padding: 26px 30px 32px; }
.gxpop-content h2 {
  margin: 0 0 12px; font-size: 30px; font-weight: 800; letter-spacing: .5px;
  color: #fff; text-transform: uppercase;
}
.gxpop-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.gxpop-badge { display: inline-block; padding: 5px 12px; border-radius: 999px; font-size: 13px; font-weight: 600; }
.gxpop-badge-rev { background: rgba(255,255,255,.1); color: #d8c8ff; }
.gxpop-badge-price {
  background: linear-gradient(90deg, #3b82f6, #a855f7);
  color: #fff; font-size: 15px; font-weight: 700;
}
.gxpop-content p { margin: 0 0 12px; line-height: 1.65; font-size: 15.5px; color: #e2e2e2; }
.gxpop-content p.gxpop-li {
  margin: 0 0 6px; padding-left: 14px; position: relative; font-weight: 600; color: #fff;
}
.gxpop-content p.gxpop-li::before { content: "›"; position: absolute; left: 0; color: #a855f7; }

.gxpop-cta {
  display: inline-block; margin-top: 14px; padding: 13px 26px; border-radius: 999px;
  background: linear-gradient(90deg, #3b82f6, #a855f7); color: #fff !important;
  font-weight: 700; text-decoration: none; font-size: 15px; letter-spacing: .3px;
  transition: transform .15s ease, filter .15s ease;
}
.gxpop-cta:hover { transform: translateY(-2px); filter: brightness(1.08); }

.gxpop-close {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 38px; height: 38px; border: none; border-radius: 50%;
  background: rgba(0,0,0,.45); color: #fff; font-size: 24px; line-height: 1;
  cursor: pointer; transition: background .15s ease;
}
.gxpop-close:hover { background: rgba(0,0,0,.7); }

@media (max-width: 600px) {
  .gxpop-content { padding: 22px 20px 26px; }
  .gxpop-content h2 { font-size: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  .gxpop-overlay, .gxpop-card { transition: none; }
}
