
 /* Canvas für Sterne */
#stars {
  position: fixed;  /* immer im Hintergrund */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;      /* hinter allen Inhalten */
  background: #020617; /* dunkles Blau */
}




* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  width: 100%;
}

 :root{
  --bg:#f2f4f7;
  --card:#0A1E3F;
  --text:#feffff;
  --muted:#6b7280;
  --accent:#0A1E3F; /* dunkelblau */
  --accent2:#3FA9F5; /* hellblau */
  --maxw:1100px;
  font-family: Inter, Roboto, Arial, sans-serif;
}


*{box-sizing:border-box}

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  display:flex;
  flex-direction:column;
  align-items:center;
}
.nav{
  width:100%;
  background:var(--card);
  box-shadow:0 6px 20px rgba(10,20,30,0.05);
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 28px;
  position:sticky;
  top:0;
  z-index:40;
}
.brand{font-weight:800;font-size:20px;color:var(--accent)}
.nav-links a{margin-left:18px;color:var(--text);text-decoration:none;font-weight:600}

main{width:100%;max-width:var(--maxw);padding:36px}

.hero{
  display:flex;
  gap:28px;
  align-items:center;
  margin-bottom:28px;
}
.hero-left{flex:1}
.hero-right{width:480px;flex-shrink:0}
.hero h1{font-size:40px;margin:0 0 12px 0;line-height:1.05}
.lead{color:var(--mutadet);margin:0 0 20px 0;font-size:18px}
.cta-row{display:flex;gap:20px}
.btn{
  padding:12px 18px;border-radius:10px;border:none;cursor:pointer;font-weight:700;
  text-decoration:none;display:inline-block;text-align:center;
}
.btn.primary{background:var(--accent);color:#ffffff}
.btn.ghost{background:transparent;border:2px solid rgba(10, 19, 29, 0.06);color:var(--text)}

.hero-image{
  width:100%;
  border-radius:12px;
  box-shadow:0 14px 40px rgba(10,20,30,0.08);
  background:linear-gradient(180deg,#fff,#f6f8fb);
  aspect-ratio: 3/4; object-fit:cover;}

/* Features */
.features{display:flex;gap:18px;margin:30px 0;text-align: center;}
.feature{flex:1;background:var(--card);padding:18px;border-radius:10px;box-shadow:0 6px 18px rgba(10,20,30,0.03)}
.feature h3{margin:0 0 8px 0}

/* Product */
.product{margin:30px 0;padding:18px;background:transparent}

/* Footer */
footer{width:100%;text-align:center;padding:26px 0;color:var(--muted);margin-top:24px}

/* Responsiv */
@media (max-width:980px){
  .hero{flex-direction:column;align-items:flex-start}
  .hero-right{width:100%}
  .features{flex-direction:column}
}

.square-container {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}


.scene {
    width: 400px;
    margin: 60px auto;
    perspective: 800px;
    transform: rotateX(20deg);
}











.bottom-boxes { text-align: center;
    margin-left: 19%;
    display: flex;
    gap: 45px;
    margin-top: 80px;
}

.blue-box {
    background: #0b1634; /* Dunkelblau wie oben */
    padding: 30px;
    border-radius: 12px;
    width: 300px;
    color: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.blue-box h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 22px;
}

.blue-box p {
    margin: 0 0 20px 0;
    font-size: 16px;
    opacity: 0.9;


}

.white-btn {
    background: white;
    color: #0a1124;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 60;
}
 

/*  SECTION LAYOUT  */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    padding: 80px 20px;
}



/* Sauberer Seitenstart */
body {
  margin: 0;                /* nur das: entfernt Browser-Standardabstand */
  font-family: Inter, Roboto, Arial, sans-serif;
}

/* Vollbreiter Balken */
.site-header {
  width: 100%;
  background: #ffffff;            /* Farbe des Balkens */
  border-bottom: 1px solid #030e25;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}

/* Zentrierter innerer Container */
.site-header .site-inner {
  max-width: 100% px;     /* inhaltliche Breite behalten */
  margin: 0 auto;        /* zentriert den Inhalt */
  padding: 18px 20px;    /* Innenabstand des Inhalts */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* Brand / Logo */
.brand { display:flex; align-items:center; gap:12px; }
.logo { height:48px; width:auto; display:block; }
.brand-name { font-weight:800; font-size:18px; color:var(--text,#040d14); }

/* Navigation rechts */
.nav-links { display:flex; gap:18px; align-items:center; }
.nav-links a { text-decoration:none; color:var(--text,#0b1721); font-weight:600; }





.site-header{
 box-sizing: border-box;   
  width:100%;
  max-width:100%px;
  margin:0 auto;
  padding:18px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand{display:flex;align-items:center;gap:12px}
.logo{height:48px;width:auto;display:block}
.brand-name{font-weight:800;font-size:18px;color:var(--text,#0b1721)}
.nav-links{display:flex;gap:18px;align-items:center}
.nav-links a{text-decoration:none;color:var(--text,#04061f);font-weight:600}




.logo {
  transition: transform 0.25s ease;
  cursor: pointer;
}

.logo.wiggle {
  transform: rotate(6deg) scale(1.09);
}



 ----------------------------------------------------------------------------------------------------------------------------------



.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* Dominanter Listing Button */
.btn-listing {
  background: linear-gradient(135deg, #000000, #0117b8);
  color: #ffffff;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(30, 76, 255, 0.35);
  transition: all 0.3s ease;
}

.btn-listing:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(30, 2, 187, 0.096);
}

/* Sekundäre Buttons */
.btn-secondary {
  background: #00063f;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s ease;
}

.btn-secondary:hover {
  background: #050235;
}

/* Outline-Variante */
.btn-secondary.outline {
  background: transparent;
  border: 1px solid #000000;
}

.btn-info-seminar {
  background: linear-gradient(135deg, #ffffff, #ffffff);
  color: #04022f;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  }

.btn-seminar:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(30, 2, 187, 0.096);
}



 /* Full Width */
.header {
  width: 100;
  background: transparent;
}

/* Inner Flex Container */
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;

  width: 100%;
  padding: 20px 40px; /* kontrollierter Abstand */
  box-sizing: border-box;
}

/* Logo */
.logo {
  font-weight: 600;
  font-size: 1.2rem;
  color: #000000;
  letter-spacing: 0.5px;
}

/* Navigation */
.nav a {
  color: #fdfdfd;
  text-decoration: none;
  font-size: 0.95rem;
}

.nav a:hover {
  color: #ffffff;
}

.btn-seminar {
  background: linear-gradient(135deg, #050939, #050939);
  color: #fcfcfc;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(24, 61, 209, 0.689);
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
 } 




 
 .hero,
.hero h1,
.hero h2,
.hero p {
  color: #ffffff;
}

 
 .site-header {
  background: linear-gradient(100deg, #000000, #1900ff);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #000a1f;
}







.btn-Kontakt {
  background: linear-gradient(135deg, #200f94,);
  color: hsl(0, 0%, 100%);
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
 } 

 /* ===== KONTAKTSEITE ===== */

.contact-page {
  max-width: 720px;
  margin: 120px auto;
  padding: 0 24px;
  text-align: center;
}

.contact-page h1 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000000;
}

.contact-intro {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 50px;
}

.contact-box {
  background: linear-gradient(135deg, #0f1c3f, #152a6a);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.35);
}

.contact-box .label {
  display: block;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 12px;
}

.contact-mail {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
}

.contact-mail:hover {
  text-decoration: underline;
}

.contact-footer {
  text-align: center;
  padding: 40px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}










/* LISTING PAGE */

listing.html, listings-page {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  background: radial-gradient(circle at top, #0b1d3a, #050914);
}



.listings-page {
  background: radial-gradient(circle at top, #0b1d3a, #050914);
  padding: 80px 20px 120px;
  color: #e6edff;
}


.listing-hero {
  max-width: 1100px;
  margin: 0 auto 60px;
}

.listing-hero h1 {
  font-size: 3.2rem;
  line-height: 1.1;
  background: linear-gradient(90deg, #ffffff, #7fb2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.listing-hero p {
  margin-top: 16px;
  font-size: 1.15rem;
  color: #b8c9ff;
  max-width: 600px;
}

.listing-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 32px;
}

.listing-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 28px;
  border-radius: 20px;
  background: linear-gradient(135deg, #060b16, #0a2a6a);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.listing-card.featured {
  border: 1px solid rgba(255, 215, 120, 0.35);
}

.listing-logo {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fdfeff, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
}

.listing-content h2 {
  margin: 10px 0;
  font-size: 1.6rem;
}

.listing-content p {
  color: #c7d4ff;
  line-height: 1.6;
}

.listing-meta {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 8px;
  font-size: 0.95rem;
}

.listing-badge {
  display: inline-block;
  margin-bottom: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffd36a, #ffb800);
  color: #1a1400;
  font-weight: 600;
  font-size: 0.85rem;
}

.listing-actions {
  margin-top: 24px;
  display: flex;
  gap: 16px;
}

.listing-actions button {
  padding: 12px 22px;
  border-radius: 12px;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
}

button.primary {
  background: #0b3cff;
  color: #fff;
}

button.primary:hover {
  background: #134cff;
}

button.secondary {
  background: transparent;
  border: 1px solid #3c63ff;
  color: #cfe0ff;
}

button.secondary:hover {
  background: rgba(60, 99, 255, 0.15);
}








.listing-logo {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.listing-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}


.listing-header {
  background: linear-gradient(100deg, #000000, #1900ff);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #000a1f;
   width: 100%;
    padding:18px 20px;
}

.listing-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.listing-wrapper {
  padding-top: 65px;
}














----------------------------------------------------------------------


.listing-placeholder {
  opacity: 0.75;
  border: 1px dashed rgba(255,255,255,0.3);
}

.listing-placeholder .listing-logo {
  background: linear-gradient(135deg, #0a1a2f, #0f2d4a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
}

.listing-disabled {
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: not-allowed;
}

















/* ============================
   LEGAL PAGES (ONLY)
   Greift NUR wenn <body class="legal-page">
   ============================ */

.legal-page .legal-content {
  max-width: 920px;
  margin: 0 auto;
  padding: 120px 20px 80px;
}

.legal-page .legal-content h1 {
  font-size: 2.1rem;
  font-weight: 750;
  margin-bottom: 28px;
  letter-spacing: 0.2px;
}

.legal-page .legal-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 22px 22px;
  margin-bottom: 18px;
}

.legal-page .legal-box h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 12px 0;
}

.legal-page .legal-box p {
  margin: 0 0 14px 0;
  line-height: 1.85;
  font-weight: 450;
}

.legal-page .legal-box p:last-child {
  margin-bottom: 0;
}

.legal-page .legal-box strong {
  font-weight: 750;
}

.legal-page .legal-note {
  opacity: 0.9;
}

/* Mobile */
@media (max-width: 768px) {
  .legal-page .legal-content {
    padding: 110px 16px 60px;
  }

  .legal-page .legal-content h1 {
    font-size: 1.65rem;
  }

  .legal-page .legal-box {
    padding: 18px 16px;
  }
}




/* ============================
   LEGAL PAGES – TEXT FARBE SCHWARZ
   ============================ */

.legal-page .legal-content,
.legal-page .legal-content h1,
.legal-page .legal-content h2,
.legal-page .legal-content p,
.legal-page .legal-content strong {
  color: #0b1721; /* sauberes, seriöses Schwarz */
}

/* Box-Hintergrund leicht heller für Kontrast */
.legal-page .legal-box {
  background: #ffffff;
  border: 1px solid #e6e9ee;
}

/* Hinweis-Box etwas dezenter */
.legal-page .legal-note {
  background: #f5f7fa;
}


































/* =========================================================
   RESPONSIVE FIX – NUR LANDINGPAGE (body.landing)
   Priorität: Handy -> iPad -> Macbook
   ========================================================= */

/* Landing: keine seltsamen Zentrier-Flex-Effekte global */
body.landing{
  display: block;
  width: 100%;
  overflow-x: hidden;
}

/* Hauptbereich sauber mittig + genug Padding */
body.landing main{
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 20px;
}

/* Boxen unten: NICHT mehr mit margin-left:19% verschieben */
body.landing .bottom-boxes{
  margin-left: 0 !important;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 56px;
}

body.landing .blue-box{
  width: min(340px, 100%);
}

/* 3D-Würfel-Gruppe: immer mittig, kein Overlap */
body.landing .scene{
  width: min(420px, 92vw);
  margin: 32px auto 8px;
  transform: rotateX(18deg);
}

body.landing .small-cubes{
  margin-top: 26px;
  gap: 18px;
}

/* 2D-rotierendes Teil (cube-container): Abstand geben, damit es NICHT in den Seminar-Kasten rutscht */
body.landing .cube-container{
  margin: 46px auto 18px;
}

/* Timeline soll bei kleineren Screens sauber umbrechen */
body.landing .timeline{
  gap: 16px;
}

body.landing .line{
  width: 44px;
}

/* =========================
   iPad / Tablets (<= 1024px)
   ========================= */
@media (max-width: 1024px){
  body.landing .scene{
    width: min(360px, 86vw);
    margin: 28px auto 6px;
    transform: rotateX(16deg);
  }

  /* Würfel kleiner, damit er nicht über die Karten schiebt */
  body.landing .cube.big{
    width: 150px;
    height: 150px;
  }
  body.landing .cube.big .face{ --size: 75px; }

  body.landing .cube.small{
    width: 52px;
    height: 52px;
  }
  body.landing .cube.small .face{ --size: 26px; }

  /* Features/Karten: zentriert */
  body.landing .features{
    justify-content: center;
  }
}

/* =========================
   Handy (<= 768px)
   ========================= */
@media (max-width: 768px){
  body.landing main{
    padding: 28px 16px;
  }

  body.landing .scene{
    width: min(300px, 86vw);
    margin: 22px auto 6px;
    transform: rotateX(14deg);
  }

  body.landing .cube.big{
    width: 130px;
    height: 130px;
  }
  body.landing .cube.big .face{ --size: 65px; }

  body.landing .cube.small{
    width: 46px;
    height: 46px;
  }
  body.landing .cube.small .face{ --size: 23px; }

  /* Das rotierende Teil kleiner + mehr Abstand nach oben */
  body.landing .cube-container{
    width: 104px;
    height: 104px;
    margin: 34px auto 14px;
  }

  body.landing .timeline{
    gap: 14px;
  }

  body.landing .line{
    width: 34px;
  }
}

/* =========================
   Sehr kleine Handy-Screens (<= 480px)
   ========================= */
@media (max-width: 480px){
  body.landing .scene{
    width: min(260px, 88vw);
    margin: 18px auto 4px;
  }

  body.landing .cube.big{
    width: 112px;
    height: 112px;
  }
  body.landing .cube.big .face{ --size: 56px; }

  body.landing .cube.small{
    width: 40px;
    height: 40px;
  }
  body.landing .cube.small .face{ --size: 20px; }

  body.landing .cube-container{
    width: 96px;
    height: 96px;
    margin: 30px auto 12px;
  }

  body.landing .line{
    width: 26px;
  }
}




/* =========================================================
   FIX 1: HEADER-NAV OUT OF FRAME (LEGAL PAGES) – NUR HANDY
   Greift NUR auf Impressum/Datenschutz/AGB wenn <body class="legal-page">
   ========================================================= */

@media (max-width: 600px) {
  /* Header-Inhalt darf umbrechen statt aus dem Screen zu laufen */
  .legal-page .site-header .header-inner{
    flex-wrap: wrap;
    gap: 10px;
    padding: 14px 16px;
  }

  /* Brand links etwas kompakter */
  .legal-page .brand{
    gap: 10px;
    min-width: 0;
  }
  .legal-page .brand-name{
    font-size: 16px;
    white-space: nowrap;
  }
  .legal-page .logo{
    height: 40px;
  }

  /* Nav rechts: umbrechen + nicht aus dem Screen */
  .legal-page .nav-links{
    width: 100%;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  /* Links kleiner + kein Offscreen */
  .legal-page .nav-links a{
    font-size: 14px;
    white-space: nowrap;
    padding: 6px 0;
  }
}

/* Noch enger (sehr kleine Geräte) */
@media (max-width: 380px) {
  .legal-page .brand-name{ font-size: 15px; }
  .legal-page .nav-links a{ font-size: 13px; }
}



/* =========================================================
   FIX 2: LANDINGPAGE – BUTTONS ZU NAH (HANDY)
   Greift nur auf deine Hero-Buttons (Listings ansehen / Seminar buchen)
   ========================================================= */

@media (max-width: 600px) {
  .hero-buttons{
    display: flex;
    flex-direction: column;   /* untereinander */
    gap: 14px;                /* mehr Abstand */
    width: 100%;
    align-items: flex-start;  /* so wie bei dir links */
  }

  .hero-buttons a{
    width: 100%;
    max-width: 320px;         /* wirkt cleaner auf Handy */
    text-align: center;
  }
}









/* iOS Safari: verhindert weißen Overscroll-Bereich, ohne Sterne/Canvas zu killen */
@supports (-webkit-touch-callout: none) {
  html {
    background: #020617; /* nur die "Gummiband"-Fläche */
  }
  body {
    background: transparent; /* lässt deinen Sternen-Background/Canvas in Ruhe */
  }
}






/* ===========================
   HARD FIX: CONTACT + LEGAL
   (greift nur, wenn body-Klasse gesetzt ist)
   =========================== */

/* KONTAKT: Text normal schwarz */
body.contact-page-body {
  background: #ffffff !important;
  color: #ffffff !important;
}

/* KONTAKT: NUR Content, NICHT Header */
body.contact-page-body main p,
body.contact-page-body main h1,
body.contact-page-body main h2,
body.contact-page-body main a {
  color: #0b1721 !important;
}


/* KONTAKT-BOX: bleibt dunkel + Text weiß */
body.contact-page-body .contact-box,
body.contact-page-body .contact-box p,
body.contact-page-body .contact-box a,
body.contact-page-body .contact-box .label,
body.contact-page-body .contact-mail {
  color: #ffffff !important;
}


/* Legal: Hintergrund hell + Text schwarz */
body.legal-page-body {
  background: #ffffff !important;
  color: #0b1721 !important;
}

body.legal-page-body p,
body.legal-page-body h1,
body.legal-page-body h2,
body.legal-page-body a,
body.legal-page-body strong {
  color: #0b1721 !important;
}

/* Legal Boxen sauber */
body.legal-page-body .legal-box {
  background: #ffffff !important;
  border: 1px solid #e6e9ee !important;
}




















/* =============================
   SEMINAR V1 (nur seminar.html)
   Nutzung: <main class="seminar-page">
   ============================= */


.seminar-card-wrap {
  width: 100%;
  max-width: 980px;
  position: relative;
}

.seminar-card-wrap::before {
  content: "";
  position: absolute;
  inset: -40px -20px;
  background: radial-gradient(circle at 30% 15%, rgba(25, 0, 255, 0.35), transparent 55%),
              radial-gradient(circle at 85% 60%, rgba(0, 0, 0, 0.55), transparent 60%);
  filter: blur(20px);
  opacity: 0.9;
  z-index: 0;
}

.seminar-card {
  position: relative;
  z-index: 1;
  border-radius: 22px;
  padding: 26px 26px 22px;
  background: linear-gradient(135deg, #000d36, #000d36);
  border: 1px solid rgba(0, 0, 0, 0.998);
  box-shadow: 0 28px 70px rgba(3, 3, 86, 0.555);
  overflow: hidden;
}

.seminar-card::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0), transparent 40%);
  pointer-events: none;
  opacity: 0.55;
}

.seminar-head {
  display: flex;
  gap: 16px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.seminar-partner-logo {
  width: 88px;
  height: 88px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.10);
}

.seminar-head-text h1 {
  margin: 0;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.seminar-head-text p {
  margin: 6px 0 0;
  color: rgba(234,240,255,0.82);
  line-height: 1.55;
  font-weight: 500;
}

.seminar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
}

.seminar-box {
  border-radius: 18px;
  background: rgba(31, 64, 154, 0.265);
  border: 1px solid rgba(57, 26, 26, 0.08);
  padding: 18px 18px 16px;
}

.seminar-box h2 {
  margin: 0 0 12px;
  font-size: 1.05rem;
  font-weight: 750;
}

.seminar-box ul {
  margin: 0;
  padding-left: 18px;
}

.seminar-box li {
  margin-bottom: 10px;
  line-height: 1.6;
  color: rgba(234,240,255,0.88);
  font-weight: 520;
}

.seminar-note {
  margin-top: 14px;
  border-radius: 14px;
  padding: 12px 12px;
  background: rgba(4, 19, 75, 0.468);
  border: 1px solid rgba(255, 255, 255, 0.265);
  color: rgba(234,240,255,0.86);
  line-height: 1.55;
}

.seminar-cta {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(45, 47, 52, 0.534);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.seminar-btn {
  display: inline-block;
  width: min(520px, 100%);
  text-align: center;
  padding: 14px 18px;
  border-radius: 16px;
  text-decoration: none;
  color: #fff;
  font-weight: 750;
  background: linear-gradient(135deg, #001b88, #001b88);
  box-shadow: 0 18px 50px rgba(11, 4, 71, 0.511);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.seminar-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(80, 81, 136, 0.311);
}

.seminar-cta-sub {
  margin: 0;
  font-size: 0.92rem;
  color: rgb(255, 255, 255);
}

/* Mobile */
@media (max-width: 860px) {
  .seminar-grid { grid-template-columns: 1fr; }
  .seminar-page { padding-top: 110px; }
  .seminar-head-text h1 { font-size: 1.35rem; }
}















/* =========================
   TEXT FARBE NUR IN BOXEN
   ========================= */

/* Standard: außerhalb von Boxen */
body {
  color: #ffffff;
}

/* Alle relevanten Boxen → Text weiß */
.blue-box,
.listing-card,
.seminar-box,
.contact-box,
.info-box,
.legal-box,
.feature,
.card,
.box {
  color: #ffffff;
}

/* Überschriften IN Boxen */
.blue-box h1,
.blue-box h2,
.blue-box h3,
.listing-card h1,
.listing-card h2,
.listing-card h3,
.seminar-box h1,
.seminar-box h2,
.seminar-box h3,
.contact-box h1,
.contact-box h2,
.contact-box h3,
.info-box h1,
.info-box h2,
.info-box h3,
.legal-box h1,
.legal-box h2,
.legal-box h3 {
  color: #ffffff;
}

/* Texte & Listen IN Boxen */
.blue-box p,
.blue-box li,
.listing-card p,
.listing-card li,
.seminar-box p,
.seminar-box li,
.contact-box p,
.info-box p,
.legal-box p,
.legal-box li {
  color: #ffffff;
}

/* Buttons IN Boxen */
.blue-box button,
.seminar-box button,
.listing-card button {
  color: #ffffff;
}










/* ===== MOBILE FIX: LEGAL PAGES Hintergrund + Text ===== */
@media (max-width: 768px) {
  body.legal-page {
    background: #f2f4f7 !important;
    color: #0b1721 !important;
  }

  body.legal-page #stars {
    display: none !important; /* verhindert Sternhintergrund auf Legal Pages mobile */
  }

  body.legal-page .legal-content,
  body.legal-page .legal-content * {
    color: #0b1721 !important;
  }
}








/* ===== MOBILE FIX: schwarzer Strich unten (Kontakt / allgemein) ===== */
html, body {
  overflow-x: hidden;
}

@media (max-width: 768px) {
  body {
    min-height: 100dvh; /* besser als 100vh auf iPhone */
    background-color: #020617; /* stabiler Fallback */
  }
}







/* ===== HERO: Überschrift + Buttons immer mittig ===== */
.hero {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 18px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;   /* horizontal mittig */
  text-align: center;    /* Text mittig */
}

.hero h1 {
  max-width: 900px;
  margin: 0 auto 22px;
}

.hero-buttons,
.hero .hero-buttons,
.hero .cta-row {
  display: flex;
  justify-content: center; /* Buttons mittig */
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
}

@media (max-width: 520px) {
  .hero-buttons,
  .hero .cta-row {
    gap: 12px;
  }
  .hero-buttons a,
  .hero .cta-row a,
  .hero-buttons button {
    width: min(340px, 92vw); /* Buttons auf Handy sauber */
  }
}










/* ===== FAQ Section (Landing) ===== */
.bw-faq {
  width: 100%;
  padding: 70px 18px 110px;
}

.bw-faq-inner {
  max-width: 900px;
  margin: 0 auto;
  color: #ffffff;
  text-align: left;
}

.bw-faq-inner h2 {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 850;
  margin-bottom: 10px;
}

.bw-faq-sub {
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 26px;
}

.bw-qa {
  width: 100%;
  background: linear-gradient(135deg, rgba(6,11,22,0.78), rgba(10,42,106,0.78));
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 18px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  font-weight: 750;
  cursor: pointer;
  margin: 12px 0 8px;
  text-align: left;
}

.bw-qa i {
  font-style: normal;
  font-weight: 900;
  opacity: 0.8;
}

.bw-ans {
  display: none;
  padding: 2px 8px 14px;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
}

.bw-ans.open {
  display: block;
}
















/* ===== PARTNERS ===== */
.partners{
  width: 100%;
  padding: 30px 18px 90px;
}

.partners-inner{
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(6,11,22,0.78), rgba(10,42,106,0.78));
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 22px;
  padding: 26px 22px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.35);
}

.partners-inner h2{
  margin: 0 0 6px 0;
  color: #ffffff;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 850;
}

.partners-sub{
  margin: 0 0 18px 0;
  color: rgba(11,23,33,0.72);
  line-height: 1.7;
}

.partners-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}

.partner-card{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 16px;
  text-decoration: none;
  background: rgba(245,247,250,0.9);
  border: 1px solid rgba(11,23,33,0.08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.partner-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
  border-color: rgba(25,0,255,0.18);
}

.partner-card img{
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex: 0 0 auto;
}

.partner-card span{
  color: #0b1721;
  font-weight: 750;
  font-size: 14px;
  letter-spacing: 0.2px;
}












/* ===== PARTNERS: groß + untereinander ===== */
.partners-inner{
  padding: 34px 26px;         /* größer */
  max-width: 1100px;          /* breiter */
}

.partners-list{
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}

.partner-row{
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 18px;
  border-radius: 18px;
  text-decoration: none;
  background: rgba(245,247,250,0.95);
  border: 1px solid rgba(11,23,33,0.10);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.partner-row:hover{
  transform: translateY(-2px);
  box-shadow: 0 20px 55px rgba(0,0,0,0.14);
  border-color: rgba(25,0,255,0.18);
}

.partner-row img{
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex: 0 0 auto;
}

.partner-row-text strong{
  display:block;
  color:#0b1721;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.2px;
}

.partner-row-text span{
  display:block;
  color: rgba(11,23,33,0.65);
  margin-top: 4px;
  font-weight: 650;
  font-size: 13px;
}



/* ===== HERO: Überschrift krasser + Abstand zu Buttons ===== */

/* Wenn deine H1 im Hero steht */
.hero h1,
.hero-title,
.landing-hero h1 {
  font-weight: 900;
  letter-spacing: -0.6px;
  line-height: 1.05;
  font-size: clamp(38px, 5.2vw, 66px);
  text-align: center;

  /* “Catch” Effekt: heller Verlauf + Glow */
  background: linear-gradient(90deg, #ffffff, #ffffff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow: 0 0 26px rgba(127,178,255,0.25);
}

/* Unterzeile/Subtitle (falls vorhanden) */
.hero p,
.hero-subtitle,
.landing-hero p {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 650;
  color: rgba(255,255,255,0.78);
}

/* Buttons: mehr Abstand nach oben + mittig */
.hero-buttons,
.cta-row,
.hero-cta {
  margin-top: 26px;       /* Abstand zwischen Überschrift und Buttons */
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}










/* ===== LISTING STANDARDS (seriös, relevant, nicht “gadgety”) ===== */
.listing-standards{ width:100%; padding: 26px 18px 54px; }

.standards-box{
  max-width: 1100px;
  margin: 0 auto;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(6,11,22,0.62), rgba(10,42,106,0.62));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 22px 70px rgba(0,0,0,0.38);
}

.standards-head h2{
  margin:0 0 8px 0;
  color:#fff;
  font-weight: 900;
  font-size: clamp(18px, 2.4vw, 26px);
}

.standards-head p{
  margin:0 0 16px 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  font-weight: 650;
}

/* Geführte Darstellung statt 4-Gitter */
.standards-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}


.standard-item{
  text-align:left;
  border: none;
  cursor:pointer;
  padding: 14px 14px;
  border-radius: 16px;
}









/* =========================================================
   BLOCKWISE – INTERAKTIVE ACTION CARDS
   Farben IDENTISCH zum bisherigen Design
   ========================================================= */

/* WICHTIG: Canvas darf keine Klicks blockieren */
#stars {
  pointer-events: none;
}

/* SECTION */
.bw-actions {
  width: 100%;
  padding: 40px 20px 60px;
  position: relative;
  z-index: 2;
}

.bw-actions-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* ÜBERSCHRIFT */
.bw-actions-title {
  text-align: center;
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #ffffff, #7fb2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bw-actions-sub {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 32px;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

/* GRID */
.bw-actions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* CARD */
.bw-action-card {
  display: block;
  text-decoration: none;
  padding: 22px 22px 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, #060b16, #0a2a6a);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 22px 60px rgba(0,0,0,0.45);
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

/* Glow */
.bw-action-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(circle at 15% 10%, rgba(127,178,255,0.25), transparent 55%),
    radial-gradient(circle at 85% 90%, rgba(25,0,255,0.18), transparent 60%);
  opacity: 0.6;
  pointer-events: none;
}

/* Hover */
.bw-action-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  border-color: rgba(127,178,255,0.35);
}

/* Top Row */
.bw-action-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}

.bw-action-card h3 {
  font-size: 18px;
  font-weight: 900;
  margin: 0;
  color: #ffffff;
  letter-spacing: -0.2px;
}

/* Chip */
.bw-action-chip {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  background: linear-gradient(90deg, #02096f, #0011ff);
  color: #ffffff;
  white-space: nowrap;
}

/* Text */
.bw-action-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  position: relative;
  z-index: 2;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .bw-actions-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .bw-actions {
    padding: 32px 14px 48px;
  }

  .bw-action-card {
    padding: 20px 18px;
  }
}


















/* ================================
   GRUNDLAGEN PAGE (isoliert)
   Greift nur bei <body class="grundlagen-page">
   ================================ */

.grundlagen-page {
  background: transparent;
  color: #ffffff;
  min-height: 100vh;
}

/* Container */
.grundlagen-page .grundlagen-main {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 20px 90px;
  position: relative;
  z-index: 2;
}

/* Hero */
.grundlagen-page .grundlagen-hero {
  text-align: left;
  margin-bottom: 28px;
}

.grundlagen-page .grundlagen-hero h1 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.6px;
  line-height: 1.05;
  margin-bottom: 14px;

  background: linear-gradient(90deg, #ffffff, #7fb2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.grundlagen-page .grundlagen-lead {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  max-width: 850px;
}

/* Cards */
.grundlagen-page .grundlagen-card {
  margin-top: 18px;
  padding: 22px 22px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, #060b16, #0a2a6a);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 22px 60px rgba(0,0,0,0.45);
}

.grundlagen-page .grundlagen-card h2 {
  margin: 0 0 12px 0;
  font-size: 18px;
  font-weight: 900;
  color: #ffffff;
}

.grundlagen-page .grundlagen-card p {
  margin: 0 0 12px 0;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
}

.grundlagen-page .grundlagen-card p:last-child {
  margin-bottom: 0;
}

/* List */
.grundlagen-page .grundlagen-list {
  margin: 10px 0 12px 0;
  padding-left: 18px;
}

.grundlagen-page .grundlagen-list li {
  margin: 8px 0;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  font-weight: 600;
}

.grundlagen-page .grundlagen-note {
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.72);
}

/* CTA */
.grundlagen-page .grundlagen-cta {
  margin-top: 28px;
}

.grundlagen-page .grundlagen-cta-box {
  border-radius: 18px;
  padding: 26px 22px;
  background: linear-gradient(135deg, #060b16, #0a2a6a);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 22px 60px rgba(0,0,0,0.45);
  text-align: left;
}

.grundlagen-page .grundlagen-cta-box h3 {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 900;
  color: #ffffff;
}

.grundlagen-page .grundlagen-cta-box p {
  margin: 0 0 16px 0;
  line-height: 1.7;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
}

.grundlagen-page .grundlagen-cta-btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #000000, #0117b8);
  box-shadow: 0 14px 40px rgba(30, 76, 255, 0.35);
  transition: transform .18s ease, box-shadow .18s ease;
}

.grundlagen-page .grundlagen-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 55px rgba(30, 76, 255, 0.45);
}

.grundlagen-page .grundlagen-cta-foot {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

/* Mobile */
@media (max-width: 768px) {
  .grundlagen-page .grundlagen-main {
    padding: 110px 16px 70px;
  }
  .grundlagen-page .grundlagen-hero {
    text-align: center;
  }
  .grundlagen-page .grundlagen-cta-box {
    text-align: center;
  }
}






/* ================================
   LISTING-SYSTEM PAGE (isoliert)
   Greift nur bei <body class="listingsystem-page">
   ================================ */

.listingsystem-page {
  background: transparent;
  color: #ffffff;
  min-height: 100vh;
}

.listingsystem-page .listingsystem-main {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 20px 90px;
  position: relative;
  z-index: 2;
}

.listingsystem-page .listingsystem-hero {
  text-align: left;
  margin-bottom: 28px;
}

.listingsystem-page .listingsystem-hero h1 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.6px;
  line-height: 1.05;
  margin-bottom: 14px;

  background: linear-gradient(90deg, #ffffff, #7fb2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.listingsystem-page .listingsystem-lead {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  max-width: 900px;
}

.listingsystem-page .listingsystem-card {
  margin-top: 18px;
  padding: 22px 22px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, #060b16, #0a2a6a);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 22px 60px rgba(0,0,0,0.45);
}

.listingsystem-page .listingsystem-card h2 {
  margin: 0 0 12px 0;
  font-size: 18px;
  font-weight: 900;
  color: #ffffff;
}

.listingsystem-page .listingsystem-card p {
  margin: 0 0 12px 0;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
}

.listingsystem-page .listingsystem-card p:last-child {
  margin-bottom: 0;
}

.listingsystem-page .listingsystem-list {
  margin: 10px 0 12px 0;
  padding-left: 18px;
}

.listingsystem-page .listingsystem-list li {
  margin: 8px 0;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  font-weight: 600;
}

.listingsystem-page .listingsystem-note {
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.72);
}

.listingsystem-page .listingsystem-cta {
  margin-top: 28px;
}

.listingsystem-page .listingsystem-cta-box {
  border-radius: 18px;
  padding: 26px 22px;
  background: linear-gradient(135deg, #060b16, #0a2a6a);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 22px 60px rgba(0,0,0,0.45);
  text-align: left;
}

.listingsystem-page .listingsystem-cta-box h3 {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 900;
  color: #ffffff;
}

.listingsystem-page .listingsystem-cta-box p {
  margin: 0 0 16px 0;
  line-height: 1.7;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
}

.listingsystem-page .listingsystem-cta-btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #000000, #0117b8);
  box-shadow: 0 14px 40px rgba(30, 76, 255, 0.35);
  transition: transform .18s ease, box-shadow .18s ease;
}

.listingsystem-page .listingsystem-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 55px rgba(30, 76, 255, 0.45);
}

.listingsystem-page .listingsystem-cta-foot {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

/* Mobile */
@media (max-width: 768px) {
  .listingsystem-page .listingsystem-main {
    padding: 110px 16px 70px;
  }
  .listingsystem-page .listingsystem-hero {
    text-align: center;
  }
  .listingsystem-page .listingsystem-cta-box {
    text-align: center;
  }
}






/* ================================
   DEX & WEB3 PAGE (isoliert)
   Greift nur bei <body class="dex-page">
   ================================ */

.dex-page {
  background: transparent;
  color: #ffffff;
  min-height: 100vh;
}

.dex-page .dex-main {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 20px 90px;
  position: relative;
  z-index: 2;
}

.dex-page .dex-hero {
  margin-bottom: 28px;
}

.dex-page .dex-hero h1 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.6px;
  line-height: 1.05;
  margin-bottom: 14px;

  background: linear-gradient(90deg, #ffffff, #7fb2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dex-page .dex-lead {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  max-width: 900px;
}

.dex-page .dex-card {
  margin-top: 18px;
  padding: 22px 22px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, #060b16, #0a2a6a);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 22px 60px rgba(0,0,0,0.45);
}

.dex-page .dex-card h2 {
  margin: 0 0 12px 0;
  font-size: 18px;
  font-weight: 900;
  color: #ffffff;
}

.dex-page .dex-card p {
  margin: 0 0 12px 0;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
}

.dex-page .dex-card p:last-child {
  margin-bottom: 0;
}

.dex-page .dex-list {
  margin: 10px 0 12px 0;
  padding-left: 18px;
}

.dex-page .dex-list li {
  margin: 8px 0;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  font-weight: 600;
}

.dex-page .dex-note {
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.72);
}

.dex-page .dex-cta {
  margin-top: 28px;
}

.dex-page .dex-cta-box {
  border-radius: 18px;
  padding: 26px 22px;
  background: linear-gradient(135deg, #060b16, #0a2a6a);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 22px 60px rgba(0,0,0,0.45);
}

.dex-page .dex-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffd36a, #ffb800);
  color: #1a1400;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.dex-page .dex-cta-box h3 {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 900;
  color: #ffffff;
}

.dex-page .dex-cta-box p {
  margin: 0 0 16px 0;
  line-height: 1.7;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
}

.dex-page .dex-cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 6px;
}

.dex-page .dex-buy-btn {
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 800;
  border: none;
  color: #ffffff;
  background: linear-gradient(135deg, #000000, #0117b8);
  box-shadow: 0 14px 40px rgba(30, 76, 255, 0.35);
  cursor: not-allowed;
  opacity: 0.65;
}

.dex-page .dex-muted {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
}

.dex-page .dex-cta-foot {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

/* Mobile */
@media (max-width: 768px) {
  .dex-page .dex-main {
    padding: 110px 16px 70px;
  }
  .dex-page .dex-hero {
    text-align: center;
  }
  .dex-page .dex-cta-box {
    text-align: center;
  }
  .dex-page .dex-cta-row {
    justify-content: center;
  }
}









/* ==============================
   MOBILE FIX – SEMINAR BUCHEN
   Greift NUR auf seminar.html
   ============================== */
@media (max-width: 768px) {

  /* Header sauber oben halten */
  .seminar-page .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }

  /* Platz für fixierten Header schaffen */
  .seminar-page .seminar-main {
    padding-top: 120px; /* ggf. 110–130px feinjustieren */
  }

 @media (max-width: 768px) {

  /* Überschrift: sauberes Umbruch-Verhalten */
  .seminar-page h1,
  .seminar-page .seminar-box h1 {
    font-size: 24px;              /* bewusst fix, nicht clamp */
    line-height: 1.3;
    text-align: center;

    /* WICHTIG: verhindert kaputtes Wort-Splitting */
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
    white-space: normal;
  }
}


  /* Box bleibt sauber im Viewport */
  .seminar-page .seminar-box {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 100%;
  }
}




/* =========================================
   MOBILE FIX – SEMINAR (nur seminar.html)
   ========================================= */
@media (max-width: 768px) {

  /* 0) Basis: verhindert seitliches Overflows */
  .seminar-page {
    overflow-x: hidden;
  }

  /* 1) Der äußere Main-Container: sauber zentriert */
  .seminar-page .seminar-main {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
  }

  /* 2) Der große Kasten: zentriert + keine „rechts-Drift“ */
  .seminar-page .seminar-box {
    width: 100%;
    max-width: 640px;         /* damit es auf Handy nicht zu breit wird */
    margin: 0 auto;
    box-sizing: border-box;
    text-align: center;       /* falls deine Inhalte sonst links/rechts wirken */
  }

  /* 3) Überschrift: bleibt im Frame, bricht sauber, NICHT out-of-frame */
  .seminar-page .seminar-box h1 {
    font-size: clamp(22px, 5.5vw, 30px);
    line-height: 1.25;
    margin-left: auto;
    margin-right: auto;
    max-width: 18ch;          /* SUPER wichtig: begrenzt Zeilenlänge */
    overflow-wrap: break-word;/* bricht nur wenn nötig */
    word-break: normal;
    hyphens: none;
  }

  /* 4) Alle inneren „Blöcke/Abschnitte“ im Kasten zentrieren */
  .seminar-page .seminar-box > * {
    margin-left: auto;
    margin-right: auto;
  }

  /* 5) Falls du Unterboxen hast (z.B. "Was dich erwartet") */
  .seminar-page .seminar-box .seminar-section,
  .seminar-page .seminar-box .info-block,
  .seminar-page .seminar-box .content-block {
    width: 100%;
    max-width: 560px;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
  }
}









