:root {
  --accent: #d8bc73;
  --visionera-green-light: #1b3e3ad9;
  --visionera-green: #1b3e3a;
  --bg-overlay: #ffffff59;
  --text-dark: #0f1720;
  --black: #000000;
  --muted: #405159;
  --card-bg: #ffffff9c;
  --radius: 14px;
  --container: 1200px;
  --herobackground: #1b3e3a;
  --hellgrau: #ffffff84;
}

html {
  overflow-y: scroll; /* Scrollbar immer sichtbar */
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ===================GRUNDLEGENES================== */
html,
body {
  height: 100%;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto,
    "Helvetica Neue", Arial;
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
  position: relative;
  z-index: 2;
}

body {
  background: url("images/Hintergrund-Website-Hell.jpg") center/cover no-repeat
    fixed;
  position: relative;
  padding-top: 75px;
  overflow-x: hidden;
}

/* Overlay (sichtbar, wenn JS es anpasst) */
.scroll-overlay,
.bg-overlay {
  position: fixed;
  inset: 0;
  background: transparent;
  z-index: 0;
  pointer-events: none;
}

/* -_-_-_-_-_-==========Allgemine buttons oder markierungen für öftere verwendung-==========-_-_-_-_-_-_ */


.visionera-divider {            /* ---Goldene Linie die Abtrennt--- */
  width: 1200px;              /* Länge der Linie */
  height: 2px;               /* Dicke */
  margin: 40px auto 30px;    /* Abstand oben & unten */
  background: var(--accent); /* Visionera Gold */
  border-radius: 4px;
  opacity: 0.9;
}



.highlight {                    /* ---einzelne Wörter in Texten hervorheben wie in Canva--- */
  color: var(--accent);             
  font-weight: 600;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.18);
}

/* ================= NAVBAR ================= */

/* Scroll-Effekt: scrolled */

.navbar.scrolled {
  background: var(--visionera-green-light); 
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}


.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: var(--visionera-green);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: background 0.4s ease, box-shadow 0.4s ease, color 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 15px 20px;
}


/* Grid-Struktur der Navbar */
.navgrid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-content: center;
  width: 100%;
}


.nav-left {
  display: flex;
  gap: 25px;
  justify-content: flex-end;
  margin-right: 40px;
}

.nav-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-right {
  display: flex;
  gap: 25px;
  justify-content: flex-start;
  margin-left: 40px;
}




/* LINKS */
.menu a {
  color: #f0f0f0;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 10px;
  transition: color 0.3s ease, background 0.3s ease;
}

.menu a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent);
}

/* LOGO */
.logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  height: 55px;
  width: auto;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover {
  transform: translateY(-3px);
  filter: brightness(1.15);
}


/*------------------- Überschrift ----------------*/
header.hero {
  padding: 75px 0 45px;
  text-align: center;
  z-index: 2;
  position: relative;
  scroll-margin-top: 100px;
}

.hero-title {
  font-family: "Poppins", sans-serif;
  font-size: 65px;
  font-weight: 800;
  color: #d8bc73;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4), 0 4px 10px rgba(0, 0, 0, 0.3),
    0 -1px 1px rgba(255, 255, 255, 0.2);
}

.hero-sub {
  font-family: "Poppins", sans-serif;
  font-size: 35px;
  font-weight: 400;
  color: #e7cf89 !important;
  letter-spacing: 0.8px;
  text-align: center;
  margin-top: -5px;
  line-height: 1.6;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4), 0 4px 10px rgba(0, 0, 0, 0.3),
    0 -1px 1px rgba(255, 255, 255, 0.2);
  opacity: 0;
  transform: translateY(15px);
  animation: fadeInSub 1.4s ease forwards 0.3s;
}

@keyframes fadeInSub {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ====================== SECTIONS STYLING ====================== */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 0 20px;
  box-shadow: 0 8px 28px rgba(20, 30, 40, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0 auto;
  
  width: 90%;
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.hrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

/* goldener Punkt*/
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
}

.section-title {
  /* Section Titel Style*/
  text-align: center;
  font-size: 35px;
  margin-bottom: 30px;
  font-weight: 700;
  color: var(--text-dark);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}


section {
  padding: 50px 20px;/* Oben/Unten 80px, Seiten 20px */
  position: relative;
  caret-color: transparent;
  scroll-margin-top: 100px;
}

/* Abstand zwischen Sections */
section + section {
  margin-top: 10px;
}

/* Zentrierter Content-Container */
section .grid {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 30px; /* seitlicher Abstand kleiner */
}

/* Text unter den Überschriften der einzelnen Teile z.B. Kurs, > allgemein*/
p.lead {
  color: var(--black);
  line-height: 1.7;
  margin-top: 6px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 50px;
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.9;
  text-align: center;
}

/* ================= HERO SECTION ================= */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* Headline */
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
}

.hero-heading {
color: #ffffff;
}

.hero h1 span {
  color: var(--accent); /* Akzentfarbe */
}

/* Subline */
.hero-subline {
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
  color:#c2c2c2;
  margin-top: 60px;
}

/* CTA Button */
a.hero-cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--accent);
  color: black;
  font-size: 20px;
  font-weight: 600;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-top: 20px;
  max-width: 600px;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.2s ease;
  margin-top:  50px;
  animation: puls 2.5s infinite;
}

/*.hero-cta:hover {
    transform: translateY(-2px);
    background: #f1d78b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(216, 188, 115, 0.25);
}*/

/* Trust Line */
.hero-trust {
  margin-top: 25px;
  font-size: 1.2rem;
  color: #c2c2c2;
  font-weight: 450;
}


.card-hero{ 
  padding: 25px;
  display: inline-flex;
  text-align: center;
  justify-content: center;
  background: var(--herobackground);
  border-radius: var(--radius);
  max-width: 1600px;
  width: 70%;
  box-shadow: 0 8px 28px rgba(20, 30, 40, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ============= Warum so viele noch vor dem richtigen Start scheitern ============= */


/* Grid für Problem-Punkte */
.problem-grid {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Flexibel */
  gap: 20px;
  align-items: stretch; /* wichtig für gleiche Höhe */
}

/* Einzelnes Problem */
.problem-item {
  background: rgba(0, 0, 0, 0.03);
  padding: 18px 24px;   /* ⬅️ weniger Abstand nach oben */
  border-radius: 14px;
  text-align: left;
  height: 225px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover – dezent */
.problem-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(20, 30, 40, 0.08);
}

/* Überschrift im Kasten */
.problem-item h3 {
  margin-top: 0;        
  margin-bottom: 10px;
  font-size: 16px;
  text-align: center;
  /* color: var(--accent); */
}

/* Text im Kasten */
.problem-item p {
  margin-top: auto; /* 🔑 sorgt für gleiche Texthöhe */
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
  text-align: center;
  margin-bottom: 40px;
}


/* ---Text unter der Linie--- */


.problem-summary-box {      /* --Box unter der Linie-- */
  max-width: 900px;
  margin: 40px auto;
  padding: 28px 32px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.result-headline {        /* --Überschrifft unter der Linie-- */
  font-weight: 600;
  font-size: 25px;
  text-align: center;
  margin-bottom: 18px;
  color: #000;
}

.problem-flow {
  margin: 40px auto;
  max-width: 700px;
  text-align: center;
}

.flow-item {
  margin-bottom: 10px;
  position: relative;
}

.flow-item p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
}


.flow-arrow {         /* Goldener Pfeil */
  display: block;
  margin-top: 25px;
  margin-bottom: 25px;
  font-size: 28px;
  color: var(--accent); 
  opacity: 0.9;
}


/* --Abschluss-Satz-- */
.problem-conclusion {
  max-width: 720px;
  margin: 0 auto;
  margin-top: 60px;
  font-size: 16px;
  font-weight: 600;
  opacity: 0.9;
}

/* ==========DEINE 4 SCHRITTE ZUM ERFOLG========== */
.course-overview {
  text-align: center;
}

.course-overview h2 {
  margin-bottom: 40px;
}

/* Grid */
.course-grid {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Flexibel */
  gap: 20px; /* größerer Abstand zwischen Boxen für Pfeile */
  align-items: start; /* extrem wichtig gegen Höhenfehler */
  position: relative; /* für absolute Pfeile */
}

/* -------- FLIP CARD -------- */
.flip-card {
  perspective: 1200px;
  position: relative;
}

.flip-inner {
  position: relative;
  width: 70%;
  min-height: 400px; /* Kartenlänge */
  transform-style: preserve-3d;
  transition: transform 0.7s ease;
}

/* Hover Flip */
@media (min-width: 750px) {
  .flip-card:hover .flip-inner {
    transform: rotateY(180deg);
  }
}

  .tap-hint{
     display: none;
  }


/* -------- GEMEINSAME BASIS -------- */
.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  padding: 26px;
  border-radius: 16px;
  backface-visibility: hidden;
  background: var(--card-bg);
  box-shadow: 0 8px 28px rgba(20, 30, 40, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* -------- VORDERSEITE -------- */
.flip-front {
  justify-content: flex-start;
}

/* Überschrift */
.flip-front h3 {
  margin: 0;
  padding-top: 55px; /* Abstand nach oben */
  font-size: larger;
  color: var(--accent);
}

/* Haupttext */
.p-strong {
  margin-top: 90px; /* Abstand zu h3 */
  font-weight: 600;
  color: #000;
  opacity: 0.85;
}

/* Untertext */
.p-normal {
  margin-top: 30px; /* Abstand zu p-strong */
  opacity: 0.85;
}

/* -------- RÜCKSEITE -------- */
.flip-back {
  justify-content: center;
  transform: rotateY(180deg);
  font-size: 15px;
  line-height: 1.6;
}

/* --------Container für die Pfeile-------- */
.flip-card.with-arrow {
  position: relative; /* nötig für absolute Pfeile */
}

/* Pfeil selbst */
.flip-card.with-arrow::after {
  content: "➔";  /* etwas dicker, moderner */
  position: absolute;
  top: 50%; /* mittig zur Box */
  left: 80%;  /* links an der Box 1 Ende */
  transform: translateX(50%) translateY(-50%); /* verschiebt Pfeil genau zwischen Box1 und Box2 */
  font-size: 24px; /* Pfeilgröße */
  color: rgba(0, 0, 0, 0.3); /* dezenter Pfeil */
  transition: color 0.3s, transform 0.3s;
  pointer-events: none; /* verhindert Interaktion */
}

/* Hover-Effekt: Pfeil „leuchtet“ wenn Box gehovt wird */
.flip-card.with-arrow:hover::after {
  color: var(--accent); 
  /* transform: translateX(50%) translateY(-50%) scale(1.2);  leicht größer beim Hover */     /* aktivieren wenn man will */
}

.motivation{
    margin-top: 30px;
    font-size: 14px;
}


/* =============KURS MODULE-SECTION============= */



.modules {
  margin: 0 auto;
  max-width: 1600px; 
  
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  align-items: center;
  justify-content: center;
}

.module {
  margin: 0 auto;
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  margin-bottom: 1px;
  cursor: pointer;
}

/* Flex für Header z.B. Modul1: ... */
.module-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  font-weight: 580;
  font-size: 17px;
}

/* rechte Lektionen anzahl */
.badge {
  background: var(--accent);
  color: #000000;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  margin-left: auto;
}

/* Lektionen ausblenden */
.lessons {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 12px; /* horizontaler Abstand wie Header */
  line-height: 2;
}

.module.active .lessons {
  max-height: 500px; /* ausreichend groß für alle Lektionen */
  padding-top: 10px;
  padding-bottom: 12px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

/* z.B: "Lektion 1.2" in einzelnen Lektionen */
.Lektion-xy {
  font-weight: 700; /* macht den Text fett */
  font-size: 16px; /* etwas größere Schrift */
  margin-right: 6px; /* Abstand zum restlichen Text */
  color: var(--black); /* Farbe */
}

.module .linie {
  /* Linie zwischen den Modulen */
  background: var(--accent);
  width: 98%;
  height: 1px;

  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin: auto;

  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
}

.module.active .linie {
  /* Linie angezeigt wenn Modul geöffnet ist */
  max-height: 20px;
  opacity: 1;
  margin: auto;
}

/* two-column area */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}


.sidebox {
  background: #fff;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.price {
  font-weight: 800;
  font-size: 22px;
  color: var(--accent);
}

/* CTA button */
.btn {
  display: inline-flex;
  background: var(--accent);
  color: #000;
  border-radius: 50px;
  font-weight: 750;
  box-shadow: 0 10px 30px var(--accent);
  transition: all 0.3s ease;
  border: none;
}

.btn-kurs{
  display: flex;
  background: var(--accent);
  border-radius: 50px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-top: 20px;
  font-weight: 650;
  font-size: 18px;
  animation: puls 2.5s infinite;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  text-align: center;
  justify-content: center;
  flex-direction: column;
}

button.btn{
  font-size: 18px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-top: 20px;
  border-radius: 50px;
  display: flex;
  animation: puls 2.5s infinite;
  background: var(--accent);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn:hover {
  background: #f1d78b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(216, 188, 115, 0.25);
  cursor: pointer;
}

.btn-outline {
  border: 2px solid var(--accent);
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 700;
  background: transparent;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--accent);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(216, 188, 115, 0.25);
}

/* blog list */
.blog-grid {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Flexibel */
  gap: 20px;
  margin-top: 12px;
}



.post {
  background: #ffffff;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

/* ------ Digistore button und disclaimer ------- */
.cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
  flex-wrap: wrap; /* wichtig für Mobile */
}

.btn-disclaimer {
  font-size: 0.75rem;
  line-height: 1.4;
  color: #666;
  max-width: 800px;
  margin-top: 20px;
}






/* =============KURS DAS RICHTIGE FÜR DICH SECTION============= */

.target-box {
  margin: 0 auto;
  max-width: 1600px;
  width: 100%;
  padding: 0 20px;
  border-radius: 16px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.target-group h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.target-group .intro {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.karten {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}



.card h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card li {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  position: relative;
  color: #333;
}

.card li::before {
  position: absolute;
  left: 0;
  top: 0;
}

.card.positive li::before {
  content: "✔";
  color: #16a34a;
}

.card.negative li::before {
  content: "✖";
  color: #dc2626;
}

.card.positive {
  border-top: 6px solid #16a34a;
}

.card.negative {
  border-top: 6px solid #dc2626;
}

/* ================= Ergebnis & Transformation ================= */


/* -------- 3 Transformation Punkte -------- */

.transformation-grid {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Flexibel */
  gap: 20px;
  margin-top: 56px;
}

.transformation-item {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 28px;

  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.03);
}

.transformation-item h3 {
  font-size: 1.08rem;
  margin-bottom: 14px;
  font-weight: 600;
  color: #111827;
}

.transformation-item p {
  color: #4b5563;
  line-height: 1.7;
  font-size: 0.97rem;
}


/* -------- Container für beide Boxen -------- */

.transformation-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 110px;
}


/* -------- Grunddesign für beide Boxen -------- */

.compare-column {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  background: #ffffff;                /* Beide Boxen weiß */
  padding: 60px 52px;
  border-radius: 22px;

  border: 1px solid #eeeeee;          /* Feine Außenkante */
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.05); /* Dezenter Schatten */
}


/* -------- Überschriften "Vorher"/"Nachher -------- */

.compare-column h4 {
  font-size: 1.2rem;                  
  font-weight: 700;
  color: #000000;                     /* Schwarz */
  text-align: center;

  margin-bottom: 70px;                /* Setzt Liste weiter nach unten */
  margin-top: -35px;                  /* Abstand nach oben */
}


/* -------- Farbiger oberer Bereich der Boxen -------- */

/* Wichtig: Damit das Pseudo-Element korrekt positioniert wird */
.compare-column {
  position: relative;
  overflow: hidden;     /* Damit die Rundung sauber bleibt */
}


/* -------- Vorher (rot) -------- */

.compare-column.before::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;

  height: 70px;                /* Höhe des farbigen Bereichs */
  background: #e10600;       /* Farbe des Bereichs */  

  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
}


/* -------- Nachher (grün) -------- */

.compare-column.after::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;

  height: 70px;                /* Höhe des farbigen Bereichs */
  background: #008d4b;       /* Farbe des Bereichs */  

  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
}


/* -------- Überschrift über die Farbe legen -------- */

.compare-column h4 {
  position: relative;
  z-index: 2;           /* Damit Text über der Farbe liegt */
}



/* -------- Liste -------- */

.compare-column ul {
  list-style: disc;        /* Normale Punkte */
  padding-left: 20px;      /* Abstand zwischen Rand und Punkt */
  margin: 0 auto;
  max-width: 320px;
}

.compare-column li {
  margin-bottom: 18px;
  line-height: 1.7;
  font-size: 0.98rem;
  padding-left: 5px;      /* Abstand zwischen Rand und Punkt */
}

.compare-column li::marker {
  font-size: 1.3rem;   /* Größe des Punktes anpassen */
  color: #000000;          /* Schwarze Punkte */
}



/* -------- Textfarben innerhalb der Boxen -------- */

.compare-column.before {
  color: #555;                       /* Leicht gedämpft */
}

.compare-column.after {
  color: #0f5132;                    /* Positive, aber nicht aggressive Farbe */
}


/* -------- Reality Check -------- */

.transformation-note {
  margin-top: 60px;
  font-size: 0.95rem;
  color: #4b5563;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  text-align: center;
}




/* =============ÜBER UNS-SECTION============= */

.section-titleÜberuns {
  /*nur Section Titel "ÜBER UNS" Style*/
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

/* Text unter der Überschriften "ÜBER UNS" => speziell dafür*/

.überuns-container {
  /* Über Uns Sektion in zwei Teile geteilt */
  display: flex;
  gap: 10px;
  margin-top: 25px;
  border-left: 0;
}

.überuns-links,
.rechts {
  flex: 1;
}

.überuns-links {
  padding-right: 30px;
  border-right: 2px solid var(--accent); /* leichte sichtbare Linie in Gold*/
}

.rechts {
  padding-left: 30px;
}


.überschrift {
  /* Überschriften in Über Uns Sektion */
  text-align: center;
  margin-bottom: 30px;
  font-size: 18px;
}


/* --- Abstand für ALLE Sections unter der fixierten Navbar wenn man mit den buttons scrollt --- */
.aufzählungen {
  list-style-type: disc !important;
  list-style-position: outside !important;
  padding-left: 75px !important;
  margin-left: 0 !important;
}

.aufzählungen li {
  display: list-item !important;
}

/* ================= PREIS SECTION ================= */
#preis .card{
  padding: 0px;
  text-align: center;
  overflow: hidden;
}


/* Preise */
.price-container {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 15px;
}

.old-price {
  font-size: 26px;
  text-decoration: line-through;
  color: #999;
}

.new-price {
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
}

/* Bonus */
.bonus-text {
  margin-bottom: 35px;
  font-size: 17px;
  color: #444;
}

/* ================== ULTRA CTA BUTTON ================== */
.cta-wrapper {
  display: flex;
  justify-content: center;
}

.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: #000000;
  font-weight: 700;
  font-size: 25px;
  padding-bottom:20px;
  padding-top: 20px; 
  padding-right: 20px;
  padding-left: 20px; 
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.5px;

  /* Tiefe */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);

  /* Animation */
  animation: puls 2.5s infinite;
  transition: all 0.2s ease;
}

 @keyframes puls{
        0% {
            transform: scale(0.98);
            filter: brightness(1);
        }
        50% {
            transform: scale(1.1);
            filter: brightness(1.2);

        }
        100% {
            transform: scale(0.98);
            filter: brightness(1);
        }
    }

/* Hover extra stark */


.bonus-text a:hover{
  text-decoration: underline;
}

/* Pop + Glow Animation */
@keyframes pulsePop {
  0% {
    transform: scale(1);
    box-shadow: 0 10px 30px var(--accent);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 15px 45px var(--accent);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 10px 30px var(--accent);
  }
}
.preis-layout {
  display: flex;
  min-height: 600px;  /* Höhe der ganzen Section */
}

/* LINKES BILD */
.preis-bild {
  display: flex;
  flex: 1;
  min-width: 0;           /* wichtig für flexbox */
  justify-content: center; /* Bild zentrieren */
  align-items: center;
  padding: 20px;
}


.preis-bild img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain; /* GANZ WICHTIG */
}

/* RECHTE SEITE */
.preis-content {
  flex: 1;
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.section-title-preis{
  font-size: 30px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 25px;
  text-align: center;
}

/* Preis Bereich */
.price-container {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 15px;
}

.old-price {
  font-size: 26px;
  text-decoration: line-through;
  color: #999;
}

.new-price {
  font-size: 52px;
  font-weight: 800;
  color: var(--accent);
}

.bonus-text {
  margin-bottom: 35px;
  font-size: 17px;
  color: #444;
  text-align: center;
}

/* CTA Button bleibt wie bei dir */
.cta-wrapper {
  display: flex;
  align-items: center;
}

/* =============RESSOURCEN-SECTION============= */
/* --soll ressourcen ein und ausklappen können für zusätzlichen Text
.ressource {
} */

.hinweis{
  display: block;
}

.boxenRessource {
  background: #d8d7d700;
  padding: 19px;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 5px 9px 1px rgba(77, 76, 76, 0.496);
}

.textR{
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.6;
}

.pdf-linkAnleitung {
  display: inline-block;
  transition: 0.2s;
}

.pdf-linkAnleitung:hover {
  transform: scale(1.05);
}

/* --Email Abfrage-- */

.email-abfrage h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
}

.email-abfrage {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

#emailInput{
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(27, 62, 58, 0.3);
  font-size: 1rem;
  font-family: sans-serif;
  outline: none;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

#emailForm{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

button {
  font-family: sans-serif;
  padding: 12px 20px;
  border-radius: 50px;
  border-color: transparent;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  animation: puls 2.5s infinite;
}



/* =============KONTAKT-SECTION============= */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.input,
textarea {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 14px;
}

/* Inputs und Textarea – Grunddesign */
.contact-form .input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(27, 62, 58, 0.3);
  font-size: 1rem;
  font-family: sans-serif;
  outline: none;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: block;
  margin-bottom: 1px;
  cursor: text;
}

/* Blinkender Cursor in schreibfeld sichtbar machen */
.contact-form .input,
.contact-form textarea {
  caret-color: #000; /* Farbe des blinkenden coursors */
}

/* Hover-Effekt – jede Box einzeln */
.contact-form .input:hover,
.contact-form textarea:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  border-color: #1b3e3a;
}

/* Fokus-Effekt */
.contact-form .input:focus,
.contact-form textarea:focus {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
  border-color: #1b3e3a;
}

/* Textarea nur vertikal verschiebbar */
.contact-form textarea {
  min-height: 120px;
  max-height: 200px;
  resize: vertical; /* nur nach unten/oben verschieben */
}

.contact-form .btn {
  margin-top: 12px;
  font-family: sans-serif;
}

/* responsive nav */

/* utilities */
.muted {
  color: var(--muted);
}
.center {
  text-align: center;
}

/* fade-in / visible (für IntersectionObserver) */
.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.module:hover,
.post:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  border-color: #1b3e3a;
}

.btn-kontakt{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}



/*=========Footer mit Impressum  und Datenschutzerklärung============*/
/* ================== FOOTER ================== */
.footer {
  width: 100%;
  background-color: #1b3e3a;
  color: white;
  margin-top: 50px;
}

.footer-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 40px 24px 32px; /* kompakter als vorher */
  box-sizing: border-box;
}

.footer-top {
  text-align: center;
  font-size: 16px;
  opacity: 0.95;
}

/* Trennlinie */
.footer .linie {
  border: none;
  border-top: 2px solid #ffffff50;
  margin: 24px 0;
}

/* Unterer Bereich */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

/* Links */
.footer .links {
  display: flex;
  gap: 25px; /* horizontal statt vertikal → ruhiger */
  font-weight: 600;
}

.footer .links a {
  color: white;
  text-decoration: none;
  font-size: 15px;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.footer .links a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Socials */

.footer .socials {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}

.footer .socials img {
  height: 36px;
  width: auto;
  transition: transform 0.3s ease;
}

.footer .socials img:hover {
  transform: scale(1.1);
}


/* ================= MOBILE MENU ================= */
#mobileMenu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background: #1b3e3a;
  padding: 20px;
  flex-direction: column;
  gap: 16px;
  z-index: 998;
}

/* WICHTIG: sichtbar wenn aktiv */
#mobileMenu.active {
  display: flex;
}

/* Mobile Links */
#mobileMenu a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* ================= HAMBURGER BUTTON ================= */
.hamburger {
  display: none; /* nur mobil */
  width: 40px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;

  flex-direction: column;
  justify-content: space-between;
  align-items: center;

  padding: 6px;
}

/* die 3 Striche */
.hamburger span {
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  border-radius: 3px;
  transition: all 0.3s ease;
}


