/* =========================
   LANDINGPAGE / STARTSEITE
   Ergänzt style1.css ohne Dopplungen
   ========================= */

   /* =========================
   LANDINGPAGE FOOTER UPGRADE
   Überschreibt cp-footer nur auf der Startseite
   ========================= */

html,
body,
body.landing-page,
.lp-main,
.hero,
.hero-slider,
.slide-media {
  max-width: 100%;
  overflow-x: hidden;
}

body.landing-page .cp-footer,
.cp-footer.cp-footer-landing  {
  width: min(100% - 32px, 1320px);
  margin: 10px auto 28px;
  padding: 28px 24px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(18, 24, 42, 0.92), rgba(10, 14, 28, 0.96));
  border: 1px solid rgba(86, 201, 255, 0.18);
  color: #eef7ff;
  text-align: left;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255,255,255,0.03);
  position: relative;
  overflow: hidden;
}

body.landing-page .cp-footer::before,
.cp-footer.cp-footer-landing::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #0fd7ff 0%, #6466ff 52%, #ff2fd3 100%);
}

body.landing-page .cp-footer::after,
.cp-footer.cp-footer-landing::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(86, 201, 255, 0.05),
    transparent 38%,
    transparent 65%,
    rgba(255, 47, 211, 0.05)
  );
  pointer-events: none;
}

body.landing-page .cp-footer p,
.cp-footer.cp-footer-landing p {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: #f5f2ff;
}

body.landing-page .cp-footer-social,
.cp-footer.cp-footer-landing .cp-footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

body.landing-page .cp-footer-social span,
 .cp-footer.cp-footer-landing .cp-footer-social span {
  color: #9eb4c9;
  font-size: 0.98rem;
}

body.landing-page .cp-footer .fa,
.cp-footer.cp-footer-landing .fa {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  font-size: 1.35rem;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

body.landing-page .cp-footer .fa:hover,
.cp-footer.cp-footer-landing .fa:hover {
  transform: translateY(-2px);
}

body.landing-page .cp-footer .fa-facebook:hover,
.cp-footer.cp-footer-landing .fa-facebook:hover {
  border-color: rgba(24, 215, 255, 0.45);
  box-shadow: 0 0 18px rgba(24, 215, 255, 0.24);
}

body.landing-page .cp-footer .fa-instagram:hover,
.cp-footer.cp-footer-landing .fa-instagram:hover  {
  border-color: rgba(255, 60, 207, 0.45);
  box-shadow: 0 0 18px rgba(255, 60, 207, 0.24);
}


/* Login Hero exakt wie Landingpage-Hero ausrichten */
body.login-page .hero.login-hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 34px;
  align-items: center;
  min-height: calc(100vh - 84px);
}

/* Panel vertikal mittig halten */
.login-panel {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* verhindert Versatz durch Meta-Boxen */
.login-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* =========================
   LOGIN HERO BREITER MACHEN
========================= */

body.login-page .lp-main {
  width: min(100% - 32px, 1500px);
}

/* Textbereich kontrollieren */
body.login-page .login-intro {
  max-width: 720px;
}

/* Headline sauber umbrechen lassen */
body.login-page .login-intro h1 {
  max-width: 680px;
  word-break: normal;
}

/* Meta-Boxen nicht überziehen lassen */
body.login-page .login-meta {
  max-width: 680px;
}

body.login-page .login-intro h1 {
  font-size: clamp(2.4rem, 4.5vw, 4.6rem);
}

.cp-user-status {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cp-user-badge {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(24, 215, 255, 0.12);
  border: 1px solid rgba(24, 215, 255, 0.35);
  color: #56c9ff;
  letter-spacing: 0.05em;
}

.cp-topbar {
  display: flex;
  align-items: center;
  gap: 18px;
}

.desktop-nav {
  margin-left: auto;
}

.cp-user-menu {
  position: relative;
  margin-left: 18px;
  flex-shrink: 0;
}

.cp-user-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(24, 215, 255, 0.35);
  background: rgba(24, 215, 255, 0.10);
  color: #56c9ff;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cp-user-trigger:hover {
  transform: translateY(-1px);
  border-color: rgba(24, 215, 255, 0.55);
  box-shadow: 0 0 18px rgba(24, 215, 255, 0.16);
}

.cp-user-trigger strong {
  color: #ffffff;
  font-weight: 700;
}

.cp-user-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 240px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(8, 12, 24, 0.96);
  border: 1px solid rgba(86, 201, 255, 0.18);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 1200;
}

.cp-user-menu.is-open .cp-user-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cp-user-dropdown-link {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: #eef7ff;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.cp-user-dropdown-link:hover {
  background: rgba(86, 201, 255, 0.10);
  color: #56c9ff;
  padding-left: 18px;
}
/*Spam Schutz*/
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* =========================
   KONTAKTFORMULAR LANDINGPAGE von hier
========================= */


.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row label {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #56c9ff;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(86, 201, 255, 0.18);
  background: rgba(8, 13, 24, 0.7);
  color: #eef7ff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border 0.25s ease, box-shadow 0.25s ease;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: #18d7ff;
  box-shadow: 0 0 12px rgba(24, 215, 255, 0.25);
  outline: none;
}

.form-row textarea {
  resize: vertical;
  min-height: 120px;
}

/* =========================
   KONTAKTFORMULAR LANDINGPAGE bis hier
========================= */

@media (max-width: 768px) {
  body.landing-page .cp-footer,
   .cp-footer.cp-footer-landing {
    width: calc(100% - 24px);
    padding: 22px 16px;
    text-align: center;
  }

  body.landing-page .cp-footer-social,
   .cp-footer.cp-footer-landing .cp-footer-social {
    justify-content: center;
  }
}

/* =========================
   LANDINGPAGE FOOTER UPGRADE
   Überschreibt cp-footer nur auf der Startseite
   ========================= */


body.landing-page {
  min-height: 100vh;
  margin: 0;
  color: #eef7ff;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(47, 107, 255, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(86, 201, 255, 0.18), transparent 26%),
    linear-gradient(180deg, #05070d 0%, #0a1120 55%, #060b14 100%);
  overflow-x: hidden;
}

body.landing-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(86, 201, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(86, 201, 255, 0.03) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
  opacity: 0.22;
  z-index: -2;
}

.landing-page a {
  color: inherit;
  text-decoration: none;
}

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

.lp-main {
  width: min(100% - 32px, 1320px);
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 34px;
  align-items: center;
  padding: 42px 0 56px;
}

.hero-slider {
  position: relative;
}
.hero-slider .slider-dots {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.hero-slider .dot {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  flex: 0 0 auto;
}

.hero-slider .dot.active {
  width: 30px;
  background: linear-gradient(135deg, #56c9ff, #2f6bff);
  box-shadow: 0 0 12px rgba(86, 201, 255, 0.28);
}

.hero-copy,
.about-card,
.highlight-card,
.section-head,
.about-grid,
.facts,
.hero-meta {
  min-width: 0;
}

.hero-copy::before,
.hero-slider::before,
.about-card::before,
.highlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(86, 201, 255, 0.07), transparent 35%, transparent 65%, rgba(47, 107, 255, 0.07));
  pointer-events: none;
}

.hero-copy {
  padding: 42px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(86, 201, 255, 0.1);
  border: 1px solid rgba(86, 201, 255, 0.2);
  color: #56c9ff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-copy h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.2rem, 4vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

.hero-copy p,
.section-head p,
.about-card p,
.fact span,
.highlight-card li,
.contact-box p {
  color: #9eb4c9;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
}
/* ===== Über-mich-Block oben und unten gleich ausrichten ===== */
#about .section-head {
  padding: 0 28px;
  box-sizing: border-box;
  margin-bottom: 24px;
}

#about .section-head > div {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

#about .section-head h2,
#about .section-head p {
  margin-left: 0;
  margin-right: 0;
}


/* Cyberpunk-Buttons passend zu style1.css */
.lp-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-transform: uppercase;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  overflow: hidden;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.22);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.lp-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.lp-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transition: left 0.55s ease;
}

.lp-btn:hover::after {
  left: 100%;
}

.lp-btn:hover {
  transform: translateY(-2px);
}

.lp-btn-primary {
  border-color: #18d7ff;
  box-shadow: 0 0 16px rgba(24, 215, 255, 0.18), inset 0 0 12px rgba(24, 215, 255, 0.08);
}

.lp-btn-primary:hover {
  text-shadow:
    -2px 0 rgba(0, 255, 255, 0.6),
    2px 0 rgba(255, 0, 160, 0.45);
  box-shadow:
    0 0 18px rgba(24, 215, 255, 0.28),
    0 0 28px rgba(255, 60, 207, 0.16);
}

.lp-btn-secondary {
  border-color: rgba(255, 60, 207, 0.5);
  box-shadow: 0 0 16px rgba(255, 60, 207, 0.14), inset 0 0 12px rgba(255, 60, 207, 0.06);
}

.lp-btn-secondary:hover {
  text-shadow:
    -2px 0 rgba(0, 255, 255, 0.45),
    2px 0 rgba(255, 0, 160, 0.6);
  box-shadow:
    0 0 18px rgba(255, 60, 207, 0.28),
    0 0 26px rgba(24, 215, 255, 0.12);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.meta-box,
.fact,
.contact-box {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(86, 201, 255, 0.14);
}

.meta-box strong,
.fact strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: #eef7ff;
}

.meta-box span {
  color: #9eb4c9;
  font-size: 0.95rem;
}

.hero-slider {
  position: relative;
  min-height: 640px;
  border-radius: 24px;
  border: 1px solid rgba(86, 201, 255, 0.24);
  background: rgba(15, 23, 42, 0.92);
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}

.slide-media img {
  -webkit-user-drag: none;
}

.slider-track {
  width: 100%;
  height: 100%;
}

.slide {
  display: none;
  width: 100%;
  height: 100%;
}

.slide.show {
  display: block;
}

.fade-slide {
  animation: simpleFade 0.45s ease;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(18px) saturate(1.05);
  transform: scale(1.04);
  opacity: 0.32;
  will-change: auto;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 8, 15, 0.28), rgba(5, 8, 15, 0.45));
}

.slide-media {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.slide-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 18px;
}

.slide-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(8, 13, 24, 0.68);
  border: 1px solid rgba(86, 201, 255, 0.14);
}

.slide-caption strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

.slide-caption span {
  color: #9eb4c9;
  font-size: 0.92rem;
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.22);
  transition: 0.25s ease;
}

.dot.active {
  width: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #56c9ff, #2f6bff);
  box-shadow: 0 0 18px rgba(86, 201, 255, 0.25);
}

.section {
  padding: 22px 0 80px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 12px;
  margin-bottom: 24px;
}

.section-head h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.6rem, 2.3vw, 2.4rem);
  margin-bottom: 8px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
}

.about-card,
.highlight-card {
  padding: 28px;
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.highlight-card ul {
  list-style: none;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.highlight-card li {
  position: relative;
  padding-left: 22px;
}

.highlight-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #56c9ff, #2f6bff);
  box-shadow: 0 0 18px rgba(86, 201, 255, 0.25);
}

.contact-box {
  margin-top: 24px;
  background: rgba(86, 201, 255, 0.06);
  border: 1px solid rgba(86, 201, 255, 0.16);
}

.slide.show {
  display: block;
}

.fade-slide {
  animation: simpleFade 0.45s ease;
}

/* --- Grundstabilität für Mobile --- */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background: #08111f;
}

body {
    position: relative;
    min-height: 100dvh;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 760px) {
  .hero {
    display: grid !important;
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    padding-top: 24px;
    gap: 18px;
  }
    .hero-slider .slider-dots {
    bottom: 12px;
    left: 12px;
    right: 12px;
  }

    #about .section-head {
    padding: 0 20px;
    margin-bottom: 18px;
  }

  .lp-main {
    width: calc(100% - 24px);
  }

  .hero-copy,
  .about-card,
  .highlight-card {
    padding: 20px;
  }

  .hero-copy h1 {
    font-size: 2rem;
    line-height: 1.08;
    word-break: break-word;
  }

  .hero-copy p,
  .about-card p,
  .highlight-card li,
  .contact-box p,
  .fact span,
  .meta-box span {
    word-break: break-word;
  }

  .hero-meta,
  .facts {
    grid-template-columns: 1fr;
  }

  .hero-slider {
    min-height: 420px;
    width: 100%;
    max-width: 100%;
  }

  .slide-media {
    min-height: 420px;
    padding: 18px;
  }

  .slide-media img {
    width: 100%;
    max-width: 100%;
    max-height: 320px;
    object-fit: contain;
  }

  .slide-caption {
    left: 16px;
    right: 16px;
    bottom: 60px;
    padding: 14px 16px;
  }

  .hero-slider .slider-dots {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .lp-btn {
    width: 100%;
  }

  .section {
    padding-bottom: 52px;
  }

    .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .lp-btn {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    text-align: center;
  }

  /* ===== Über-mich-Intro oben sauber einrücken ===== */
.section-head {
  padding: 0 20px;
  box-sizing: border-box;
}

.section-head > div {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.section-head h2,
.section-head p {
  margin-left: 0;
  margin-right: 0;
}


  .section-head {
    padding: 0 16px;
    margin-bottom: 18px;
  }

  .section-head h2 {
    font-size: 1.9rem;
    line-height: 1.05;
  }

  .section-head p {
    font-size: 1rem;
    line-height: 1.7;
    word-break: break-word;
  }
}



/* Verhindert weiße Repaint-Flächen */
section,
.container,
.card,
.serviceBx,
.hero,
.slider,
.footer,
main {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* ===== Mobile Rand-Fix ===== */
@media (max-width: 768px) {

  .lp-main {
    width: calc(100% - 32px);
    margin-left: auto;
    margin-right: auto;
  }

  .section,
  .hero,
  .about-grid,
  .section-head {
    padding-left: 8px;
    padding-right: 8px;
  }

    .section-head {
    margin-top: 28px;
  }

}


/* Mobile: keine fixed-Hintergründe */
@media (max-width: 900px) {
    * {
        background-attachment: scroll !important;
    }

    html, body {
        min-height: 100%;
        height: auto;
    }

    /* 100vh auf Handy vermeiden */
    .hero,
    .banner,
    .intro,
    .slider,
    .services,
    .footer {
        min-height: auto !important;
        height: auto !important;
    }

    /* harte GPU-/Filter-Effekte auf Mobile entschärfen */
    .card,
    .serviceBx,
    .hero-content,
    .slider .slide,
    .footer,
    .menu,
    .navbar {
        filter: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    /* keine problematischen Fixed-/Sticky-Effekte */
    .navbar,
    .menu,
    .footer,
    .slider,
    .hero {
        background-attachment: scroll !important;
    }
}


/* ===== Finaler Mobile-Fix für gequetschten Hero-Bereich ===== */
@media (max-width: 1100px) {
  .hero,
  .about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 20px;
  }

  .hero > * {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-copy,
  .hero-slider {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .lp-main {
    width: min(100% - 20px, 1320px) !important;
    overflow-x: clip;
  }
}









/* ===== Globaler Overflow-Fix ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body.landing-page {
  overflow-x: hidden;
}

.lp-main {
  width: min(100% - 24px, 1320px);
  margin: 0 auto;
}

.hero,
.hero-copy,
.hero-slider,
.about-grid,
.about-card,
.highlight-card,
.hero-meta,
.facts,
.slide,
.slide-media,
.slide-caption,
.section-head {
  min-width: 0;
  max-width: 100%;
}

/* =========================
   LOGIN / ANMELDUNG
   Cyberpunk-Formular für Anmeldung.php
   ========================= */

body.login-page .hero.login-hero {
  grid-template-columns: 1fr 0.95fr;
  align-items: stretch;
  min-height: calc(100vh - 84px);
}

.login-intro,
.login-panel {
  position: relative;
}

.login-panel {
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-panel-inner {
  position: relative;
  width: 100%;
  max-width: 560px;
  padding: 34px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(14, 21, 39, 0.94), rgba(8, 12, 24, 0.97));
  border: 1px solid rgba(86, 201, 255, 0.2);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.03) inset,
    0 22px 60px rgba(0, 0, 0, 0.34),
    0 0 24px rgba(24, 215, 255, 0.08);
  overflow: hidden;
}

.login-panel-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(86, 201, 255, 0.06), transparent 35%, transparent 68%, rgba(255, 60, 207, 0.06));
  pointer-events: none;
}

.login-panel-inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #18d7ff 0%, #6466ff 50%, #ff3ccf 100%);
  box-shadow: 0 0 18px rgba(24, 215, 255, 0.28);
}

.login-panel-head {
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
}

.login-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: #56c9ff;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.login-panel-head h2 {
  margin: 0 0 10px;
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  letter-spacing: 0.05em;
  color: #eef7ff;
}

.login-panel-head p {
  margin: 0;
  color: #9eb4c9;
  line-height: 1.7;
}

.cp-login-form {
  position: relative;
  z-index: 1;
}

.cp-form-group {
  margin-bottom: 22px;
}

.cp-form-group label {
  display: block;
  margin-bottom: 10px;
  color: #dff5ff;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cp-input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid rgba(86, 201, 255, 0.2);
  outline: none;
  background:
    linear-gradient(180deg, rgba(8, 14, 26, 0.96), rgba(11, 18, 32, 0.98));
  color: #f5fbff;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.02),
    inset 0 0 18px rgba(86, 201, 255, 0.04);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease,
    background 0.25s ease;
}

.cp-input::placeholder {
  color: rgba(158, 180, 201, 0.75);
}

.cp-input:hover {
  border-color: rgba(86, 201, 255, 0.32);
}

.cp-input:focus {
  border-color: #18d7ff;
  box-shadow:
    0 0 0 3px rgba(24, 215, 255, 0.08),
    0 0 18px rgba(24, 215, 255, 0.18),
    0 0 28px rgba(255, 60, 207, 0.08),
    inset 0 0 20px rgba(86, 201, 255, 0.06);
  transform: translateY(-1px);
}

.cp-form-group.has-error .cp-input {
  border-color: rgba(255, 76, 76, 0.82);
  box-shadow:
    0 0 0 3px rgba(255, 76, 76, 0.06),
    0 0 18px rgba(255, 76, 76, 0.12);
}

.cp-error {
  display: inline-block;
  margin-top: 10px;
  color: #ff8ea1;
  font-size: 0.94rem;
  line-height: 1.5;
}

.login-actions {
  margin-top: 28px;
}

.login-actions .lp-btn,
.login-actions button.lp-btn {
  min-width: 220px;
  border-radius: 16px;
  cursor: pointer;
}

.login-actions button.lp-btn {
  appearance: none;
  -webkit-appearance: none;
}

.login-meta {
  margin-top: 26px;
}

body.login-page .meta-box {
  background: rgba(255, 255, 255, 0.035);
}

/* Zusätzlicher Cyberpunk-Rand */
.login-panel-inner .cp-corner,
.login-panel-inner .cp-corner-bottom {
  position: absolute;
  width: 72px;
  height: 72px;
  pointer-events: none;
  opacity: 0.55;
}

.login-panel-inner .cp-corner {
  top: 16px;
  right: 16px;
  border-top: 2px solid rgba(24, 215, 255, 0.55);
  border-right: 2px solid rgba(24, 215, 255, 0.55);
}

.login-panel-inner .cp-corner-bottom {
  left: 16px;
  bottom: 16px;
  border-left: 2px solid rgba(255, 60, 207, 0.55);
  border-bottom: 2px solid rgba(255, 60, 207, 0.55);
}

/* Mobile */
@media (max-width: 1100px) {
  body.login-page .hero.login-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .login-panel-inner {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .login-panel-inner {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .login-panel-head {
    margin-bottom: 22px;
  }

  .cp-input {
    min-height: 54px;
    padding: 0 16px;
    border-radius: 14px;
  }

  .login-actions {
    gap: 12px;
  }

  .login-actions .lp-btn,
  .login-actions button.lp-btn {
    width: 100%;
    min-width: 0;
  }
}

body.career-page {
  min-height: 100vh;
  margin: 0;
  color: #eef7ff;
  font-family: 'Inter', sans-serif;
  background:
    linear-gradient(rgba(7, 10, 20, 0.78), rgba(9, 12, 24, 0.86)),
    url('img/IMG_20260221_200109.jpg') center/cover no-repeat;
  overflow-x: hidden;
}

.career-accordion-wrap {
  width: min(100% - 24px, 1100px);
  margin: 0 auto;
  padding: 32px 0 56px;
}

.career-accordion {
  display: grid;
  gap: 18px;
}

.career-item {
  border-radius: 22px;
  overflow: hidden;
  background: rgba(10, 16, 30, 0.9);
  border: 1px solid rgba(86, 201, 255, 0.16);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.career-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 22px;
  border: none;
  background: transparent;
  color: #eef7ff;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  text-align: left;
  cursor: pointer;
}

.career-toggle:hover {
  background: rgba(86, 201, 255, 0.05);
}

.career-icon {
  font-size: 1.6rem;
  line-height: 1;
  color: #56c9ff;
  flex-shrink: 0;
}

.career-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.career-content-inner {
  padding: 0 22px 22px;
  color: #c9d8e8;
  line-height: 1.7;
}

.career-item.is-open .career-content {
  max-height: 1200px;
}

.career-item.is-open .career-icon {
  content: "-";
}

@media (max-width: 768px) {
  .career-accordion-wrap {
    width: calc(100% - 24px);
    padding: 20px 0 40px;
  }

  .career-toggle {
    padding: 20px 16px;
    font-size: 1rem;
  }

  .career-content-inner {
    padding: 0 16px 18px;
  }
}

/* =========================
   MOBILE FIX: USER-MENU + BURGER
   verhindert Überlagerung im Header
   ========================= */

@media (max-width: 640px) {

  .cp-topbar {
    flex-wrap: wrap;
    height: auto;
    padding-bottom: 8px;
  }

  /* Burger bleibt oben rechts */
  .cp-burger {
    order: 2;
    margin-left: auto;
  }

  /* User-Badge rutscht unter die Topbar */
  .cp-user-menu {
    order: 3;
    width: 100%;
    margin-top: 6px;
    display: flex;
    justify-content: center;
  }

  /* Badge kompakter darstellen */
  .cp-user-trigger {
    font-size: 0.8rem;
    padding: 6px 14px;
    min-height: 36px;
  }

}

/* =========================
   SUPPORT FORM PAGE
========================= */

.support-shell {
  width: min(100% - 32px, 1380px);
  margin: 34px auto 60px;
  padding: 0;
}

.support-form-panel {
  position: relative;
  padding: 26px 24px 24px;
  border-radius: 34px;
  background:
    linear-gradient(90deg, rgba(3, 12, 28, 0.96) 0%, rgba(6, 20, 44, 0.96) 55%, rgba(7, 22, 52, 0.96) 100%);
  border: 1px solid rgba(63, 188, 255, 0.22);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255,255,255,0.02),
    0 0 24px rgba(24, 215, 255, 0.05);
  overflow: hidden;
}

.support-form-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(86, 201, 255, 0.06),
      transparent 32%,
      transparent 68%,
      rgba(100, 102, 255, 0.05)
    );
  pointer-events: none;
}

.support-form {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.support-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.support-row label {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #56c9ff;
  padding-left: 2px;
}

.support-row input,
.support-row textarea {
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(31, 146, 224, 0.34);
  background:
    linear-gradient(90deg, rgba(0, 10, 25, 0.95) 0%, rgba(4, 14, 34, 0.96) 55%, rgba(6, 18, 42, 0.98) 100%);
  color: #eef7ff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  outline: none;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.015),
    inset 0 0 18px rgba(24, 215, 255, 0.02);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.support-row input {
  min-height: 64px;
  padding: 0 22px;
}

.support-row textarea {
  min-height: 180px;
  padding: 18px 22px;
  resize: vertical;
}

.support-row input::placeholder,
.support-row textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.support-row input:hover,
.support-row textarea:hover {
  border-color: rgba(63, 188, 255, 0.48);
}

.support-row input:focus,
.support-row textarea:focus {
  border-color: #18d7ff;
  box-shadow:
    0 0 0 3px rgba(24, 215, 255, 0.08),
    0 0 18px rgba(24, 215, 255, 0.16),
    inset 0 0 20px rgba(24, 215, 255, 0.03);
  transform: translateY(-1px);
}

.support-submit {
  position: relative;
  width: 100%;
  min-height: 84px;
  margin-top: 4px;
  border: 1px solid #19d5ff;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(74, 86, 106, 0.78) 0%, rgba(78, 92, 116, 0.74) 50%, rgba(53, 70, 104, 0.86) 100%);
  color: #eef3ff;
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow:
    0 0 20px rgba(24, 215, 255, 0.12),
    inset 0 0 0 1px rgba(255,255,255,0.03);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    text-shadow 0.25s ease;
}

.support-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.support-submit:hover::before {
  transform: translateX(100%);
}

.support-submit:hover {
  transform: translateY(-1px);
  text-shadow:
    -2px 0 rgba(0, 255, 255, 0.35),
    2px 0 rgba(255, 0, 160, 0.2);
  box-shadow:
    0 0 22px rgba(24, 215, 255, 0.18),
    0 0 30px rgba(24, 215, 255, 0.08);
}

/* Optionale Statusbox unter dem Formular */
.support-feedback {
  margin-top: 24px;
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(7, 14, 28, 0.92);
  border: 1px solid rgba(86, 201, 255, 0.18);
  color: #eef7ff;
}

.support-feedback h3 {
  margin: 0 0 12px;
  font-family: 'Orbitron', sans-serif;
  color: #56c9ff;
}

.support-feedback p {
  margin: 8px 0;
  color: #cfe7f8;
  line-height: 1.7;
}

/* Mobile */
@media (max-width: 768px) {
  .support-shell {
    width: calc(100% - 20px);
    margin: 18px auto 36px;
  }

  .support-form-panel {
    padding: 18px 16px 16px;
    border-radius: 24px;
  }

  .support-row input {
    min-height: 58px;
    padding: 0 16px;
  }

  .support-row textarea {
    min-height: 150px;
    padding: 16px;
  }

  .support-submit {
    min-height: 68px;
    font-size: 1.15rem;
  }
}

/* =========================
   SUPPORT PAGE
   Supportformular direkt in landingpage.css
   ========================= */

.support-shell {
  width: min(100% - 32px, 1320px);
  margin: 34px auto 56px;
  padding: 0;
}

.support-form-panel {
  position: relative;
  width: 100%;
  padding: 28px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(14, 21, 39, 0.94), rgba(8, 12, 24, 0.97));
  border: 1px solid rgba(86, 201, 255, 0.18);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255,255,255,0.03);
  overflow: hidden;
}

.support-form-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(86, 201, 255, 0.06),
    transparent 35%,
    transparent 68%,
    rgba(255, 60, 207, 0.06)
  );
}

.support-form-panel::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #18d7ff 0%, #6466ff 50%, #ff3ccf 100%);
  box-shadow: 0 0 18px rgba(24, 215, 255, 0.24);
}

.support-form {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
  align-items: start;
}

.support-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.support-row label {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #eef7ff;
}

.support-row input,
.support-row textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(86, 201, 255, 0.20);
  border-radius: 16px;
  background: rgba(8, 13, 24, 0.78);
  color: #eef7ff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  padding: 14px 16px;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease,
    background 0.25s ease;
  appearance: none;
  -webkit-appearance: none;
}

.support-row input {
  min-height: 56px;
}

.support-row textarea {
  min-height: 180px;
  resize: vertical;
  grid-column: 1 / -1;
}

.support-row input::placeholder,
.support-row textarea::placeholder {
  color: rgba(158, 180, 201, 0.78);
}

.support-row input:hover,
.support-row textarea:hover {
  border-color: rgba(86, 201, 255, 0.34);
}

.support-row input:focus,
.support-row textarea:focus {
  outline: none;
  border-color: #18d7ff;
  box-shadow:
    0 0 0 3px rgba(24, 215, 255, 0.08),
    0 0 18px rgba(24, 215, 255, 0.16),
    0 0 24px rgba(255, 60, 207, 0.07);
  transform: translateY(-1px);
}

.support-row:nth-child(3) {
  grid-column: 1 / -1;
}

.support-submit {
  grid-column: 1 / -1;
  justify-self: start;
  width: auto;
  min-width: 260px;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid #18d7ff;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  text-transform: uppercase;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  box-shadow:
    0 0 16px rgba(24, 215, 255, 0.18),
    inset 0 0 12px rgba(24, 215, 255, 0.08);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.support-submit:hover {
  transform: translateY(-2px);
  text-shadow:
    -2px 0 rgba(0, 255, 255, 0.6),
    2px 0 rgba(255, 0, 160, 0.45);
  box-shadow:
    0 0 18px rgba(24, 215, 255, 0.28),
    0 0 28px rgba(255, 60, 207, 0.16);
}

.support-submit:active {
  transform: translateY(0);
}

@media (max-width: 980px) {
  .support-shell {
    width: min(100% - 24px, 1320px);
    margin: 24px auto 42px;
  }

  .support-form {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .support-row:nth-child(3),
  .support-submit {
    grid-column: auto;
  }

  .support-submit {
    width: 100%;
    min-width: 0;
    justify-self: stretch;
  }
}

@media (max-width: 768px) {
  .support-shell {
    width: calc(100% - 20px);
    margin: 20px auto 36px;
  }

  .support-form-panel {
    padding: 18px;
    border-radius: 20px;
  }

  .support-form {
    gap: 14px;
  }

  .support-row label {
    font-size: 0.72rem;
    line-height: 1.4;
  }

  .support-row input,
  .support-row textarea {
    font-size: 16px;
    padding: 13px 14px;
    border-radius: 14px;
  }

  .support-row input {
    min-height: 52px;
  }

  .support-row textarea {
    min-height: 150px;
  }

  .support-submit {
    min-height: 52px;
    padding: 0 18px;
    font-size: 0.86rem;
    letter-spacing: 0.06em;
    border-radius: 14px;
  }
}

@media (max-width: 480px) {
  .support-shell {
    width: calc(100% - 16px);
    margin: 16px auto 28px;
  }

  .support-form-panel {
    padding: 14px;
    border-radius: 18px;
  }

  .support-row label {
    font-size: 0.68rem;
  }

  .support-row input,
  .support-row textarea {
    padding: 12px 13px;
  }

  .support-row textarea {
    min-height: 130px;
  }

  .support-submit {
    width: 100%;
  }
}

/* =========================
   SUPPORT FEEDBACK
========================= */

.support-feedback {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  line-height: 1.6;
  border: 1px solid rgba(255,255,255,0.08);
}

.support-feedback-success {
  background: rgba(24, 215, 255, 0.10);
  border-color: rgba(24, 215, 255, 0.28);
  color: #dffbff;
  box-shadow: 0 0 18px rgba(24, 215, 255, 0.10);
}

.support-feedback-error {
  background: rgba(255, 76, 76, 0.10);
  border-color: rgba(255, 76, 76, 0.28);
  color: #ffd9df;
  box-shadow: 0 0 18px rgba(255, 76, 76, 0.10);
}

/* =========================
   3D UNTERSTÜTZUNG
   Seite: 3D_Wissen.php
   ========================= */

body.support3d-page {
  min-height: 100vh;
}

.support3d-page .s3d-main {
  width: min(100% - 32px, 1320px);
  margin: 0 auto;
  padding: 34px 0 56px;
}

.support3d-page .s3d-hero,
.support3d-page .s3d-panel {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(8, 13, 24, 0.94));
  border: 1px solid rgba(86, 201, 255, 0.18);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.support3d-page .s3d-hero {
  padding: 34px;
  margin-bottom: 28px;
}

.support3d-page .s3d-hero::before,
.support3d-page .s3d-panel::before,
.support3d-page .s3d-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(86, 201, 255, 0.06),
    transparent 35%,
    transparent 68%,
    rgba(255, 60, 207, 0.05)
  );
  pointer-events: none;
}

.support3d-page .s3d-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(86, 201, 255, 0.1);
  border: 1px solid rgba(86, 201, 255, 0.2);
  color: #56c9ff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.support3d-page .s3d-hero h1 {
  margin: 0 0 16px;
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0.04em;
}

.support3d-page .s3d-panel-head,
.support3d-page .s3d-step-head {
  width: 100%;
  border: none;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.support3d-page .s3d-panel-head {
  display: flex;
  justify-content: space-between;
  padding: 28px 30px;
}

.support3d-page .s3d-panel-title h2 {
  margin: 0 0 8px;
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
}

.support3d-page .s3d-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 52px;
  border-radius: 16px;
  background: rgba(86, 201, 255, 0.08);
  border: 1px solid rgba(86, 201, 255, 0.24);
  color: #56c9ff;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  transition: transform 0.25s ease;
}

.support3d-page .s3d-panel.is-open .s3d-badge,
.support3d-page .s3d-step.is-open .s3d-badge {
  transform: rotate(45deg);
}

.support3d-page .s3d-panel-body,
.support3d-page .s3d-step-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s ease, opacity 0.25s ease;
}

.support3d-page .s3d-panel.is-open .s3d-panel-body {
  max-height: 2400px;
  opacity: 1;
  padding: 0 30px 30px;
}

.support3d-page .s3d-step {
  border-radius: 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(86, 201, 255, 0.14);
}

.support3d-page .s3d-step-head {
  display: flex;
  justify-content: space-between;
  padding: 22px;
}

.support3d-page .s3d-step-copy h3 {
  margin: 0 0 6px;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  color: #eef7ff;
}

.support3d-page .s3d-step.is-open .s3d-step-body {
  max-height: 1200px;
  opacity: 1;
  padding: 0 22px 22px;
}

.support3d-page .s3d-step-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}

.support3d-page .s3d-text-card,
.support3d-page .s3d-image-card,
.support3d-page .s3d-mini-card {
  border-radius: 18px;
  background: rgba(7, 12, 24, 0.78);
  border: 1px solid rgba(86, 201, 255, 0.12);
  padding: 18px;
}

.support3d-page .s3d-placeholder {
  min-height: 240px;
  border-radius: 16px;
  border: 1px dashed rgba(86, 201, 255, 0.3);
  background: linear-gradient(
    135deg,
    rgba(86, 201, 255, 0.08),
    rgba(255, 60, 207, 0.06)
  );
  display: grid;
  place-items: center;
}

/* =========================
   3D SUPPORT MOBILE FIX
   ========================= */

.support3d-page .s3d-step-grid,
.support3d-page .s3d-panel-title,
.support3d-page .s3d-step-copy,
.support3d-page .s3d-text-card,
.support3d-page .s3d-image-card,
.support3d-page .s3d-mini-card,
.support3d-page .s3d-placeholder {
  min-width: 0;
}

.support3d-page .s3d-placeholder img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.support3d-page .s3d-placeholder a {
  display: block;
  margin-top: 12px;
  word-break: break-word;
}

.support3d-page .s3d-mini-card p,
.support3d-page .s3d-text-card p,
.support3d-page .s3d-step-copy p,
.support3d-page .s3d-panel-title p {
  word-break: normal;
  overflow-wrap: break-word;
}

@media (max-width: 900px) {
  .support3d-page .s3d-main {
    width: calc(100% - 24px);
    padding: 20px 0 40px;
  }

  .support3d-page .s3d-hero,
  .support3d-page .s3d-panel {
    border-radius: 22px;
  }

  .support3d-page .s3d-hero {
    padding: 22px;
    margin-bottom: 20px;
  }

  .support3d-page .s3d-panel-head {
    padding: 20px;
    gap: 14px;
    align-items: flex-start;
  }

  .support3d-page .s3d-step-head {
    padding: 18px;
    gap: 14px;
    align-items: flex-start;
  }

  .support3d-page .s3d-panel-title,
  .support3d-page .s3d-step-copy {
    flex: 1;
    min-width: 0;
  }

  .support3d-page .s3d-badge {
    min-width: 44px;
    min-height: 44px;
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  .support3d-page .s3d-panel.is-open .s3d-panel-body {
    padding: 0 20px 20px;
    max-height: none;
  }

  .support3d-page .s3d-step.is-open .s3d-step-body {
    padding: 0 18px 18px;
    max-height: none;
  }

  .support3d-page .s3d-step-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .support3d-page .s3d-text-card,
  .support3d-page .s3d-image-card,
  .support3d-page .s3d-mini-card {
    padding: 16px;
  }

  .support3d-page .s3d-placeholder {
    min-height: auto;
    padding: 14px;
  }
}

@media (max-width: 560px) {
  .support3d-page .s3d-hero h1 {
    font-size: 1.7rem;
    line-height: 1.15;
  }

  .support3d-page .s3d-panel-title h2,
  .support3d-page .s3d-step-copy h3 {
    line-height: 1.2;
  }

  .support3d-page .s3d-panel-title p,
  .support3d-page .s3d-step-copy p,
  .support3d-page .s3d-mini-card p,
  .support3d-page .s3d-text-card p {
    font-size: 1rem;
    line-height: 1.6;
  }
}
/* =========================
   3D SUPPORT - ANTI FLICKER MOBILE FIX
   ========================= */

.support3d-page .s3d-hero,
.support3d-page .s3d-panel,
.support3d-page .s3d-step,
.support3d-page .s3d-text-card,
.support3d-page .s3d-image-card,
.support3d-page .s3d-mini-card,
.support3d-page .s3d-placeholder,
.support3d-page .s3d-badge {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

@media (max-width: 900px) {
  /* weniger Rendering-Last auf Handy */
  .support3d-page .s3d-hero,
  .support3d-page .s3d-panel,
  .support3d-page .s3d-step,
  .support3d-page .s3d-text-card,
  .support3d-page .s3d-image-card,
  .support3d-page .s3d-mini-card {
    box-shadow: none !important;
  }

  .support3d-page .s3d-hero::before,
  .support3d-page .s3d-panel::before,
  .support3d-page .s3d-step::before {
    display: none !important;
  }

  .support3d-page .s3d-panel-body,
  .support3d-page .s3d-step-body {
    transition: none !important;
  }

  .support3d-page .s3d-panel.is-open .s3d-panel-body,
  .support3d-page .s3d-step.is-open .s3d-step-body {
    max-height: none !important;
    opacity: 1 !important;
  }

  .support3d-page .s3d-badge {
    transition: none !important;
  }

  .support3d-page .s3d-placeholder,
  .support3d-page .s3d-text-card,
  .support3d-page .s3d-image-card,
  .support3d-page .s3d-mini-card {
    background: rgba(7, 12, 24, 0.96) !important;
  }

  .support3d-page img {
    display: block;
    height: auto;
  }
}