




.wd-btn{
    text-decoration: none;
    /* margin-top: auto;                drückt Button nach unten */
    /* align-self: center;              richtet sich mittig aus */
    padding: 8px 22px;
    background: var(--akzent-farbe);
    border-radius: 12px;
    color: #e8e8e8;
    font-weight: 500;
    font-size: 1.05rem;   
    border: 0;
    box-shadow: 0px 5px 10px #00000040,-0px -5px 10px #00000010,
              inset 4px 4px 8px #c463fc,
              inset -4px -4px 8px #490074;
    transition: transform .15s ease, filter .15s ease;
    text-shadow: 1px 1px 2px #00000050;
}
.wd-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  text-shadow: 1px 1px 2px #00000080;
}
.wd-btn:active, .wd-btn-long:active{
  transform: translateY(0px) scale(0.99);
}

.wd-btn0{
    margin-top: auto;               /* drückt Button nach unten */
    align-self: center;
    padding: 5px 25px;
    text-shadow: 1px 1px 2px #00000050;
    border-radius: 8px;
    background: #1a1a1a;
    color: #e8e8e8;
    font-weight: 500;
    font-size: 1.05rem;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    border: 0;
    box-shadow: 3px 3px 4px #00000050,-3px -3px 4px #ffffff30;
    transition: transform .15s ease, filter .15s ease;
}


.wd-btn-long {
    margin-top: auto;               /* drückt Button nach unten */
  align-self: center;
    padding: 10px 60px;
  background: var(--akzent-farbe);
  border-radius: 12px;
  color: #e8e8e8ee;
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: .2px;



  border: 0;

  box-shadow: 0px 5px 10px #00000050,-0px -5px 10px #00000010,
              inset 4px 4px 8px #c463fc,
              inset -4px -4px 8px #490074;

  transition: transform .15s ease, filter .15s ease;
}

.wd-btn:hover ,.wd-btn-long:hover, .free-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  text-shadow: 1px 1px 2px #00000080;
}

.wd-btn:active, .wd-btn-long:active{
  transform: translateY(0px) scale(0.99);
}


/*--------- Social Icons ----------*/
.social-box {
    display: flex;
    align-items: center;
    justify-content: center;
   
    gap: 1rem;  
}
.social-box a {
   text-decoration: none;
   transition: 0.3s; 
}
.social-box a:hover {
    transform: scale(1.2);
}
.social-box a i {
    box-shadow: var(--schatten-btn);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 1.4rem;
    line-height: -10px;
}

.social-box a i:hover {
    transform: scale(1.2);
    box-shadow: var(--schatten-btn-inset);
    color: var(--akzent-farbe);
}

.i1,.social-box a:first-child{
    color: #1777f2;
}

.i2,.social-box a:nth-child(2){
   color: #e48b16;
}

.i3,.social-box a:nth-child(3){
    color: #45c775;
}

.i4, .social-box a:nth-child(4){
   color: var(--text-farbe);
}

@media (max-width: 1350px){
    .social-box {
        display: none;
    }

}


/*--------- Karte ----------*/
.karte {
    position: relative;
    border-radius: 22px;
    padding: 22px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    max-width: 300px;
    min-height: 400px;
     color: var(--text-farbe);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--schatten-karte);

    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
    margin: 1rem;
    min-width: 0;    
}
.karte:hover {
    transform: translateY(-6px);
   border-color: color-mix(in srgb, var(--akzent-farbe) 40%, rgba(255,255,255,0.12));
}

.karte:focus-within {
  outline: 2px solid color-mix(in srgb, var(--akzent-farbe) 55%, transparent);
  outline-offset: 3px;
}

.karte--featured {
  overflow: hidden;
  border: 1px solid var(--akzent-farbe);
}

.karte--featured::before {
  content: "Empfohlen";
  position: absolute;
  top: 25px;
  right: -40px;
  background: color-mix(in srgb, var(--akzent-farbe) 100%, rgba(0,0,0,0.2));
  padding: 5px 50px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #dab640;
  font-family: var(--text-schrift);
  transform: rotate(42deg);
  box-shadow: var(--schatten-karte);
}

.karte-top {
    background: transparent; /* --- Placeholder ---*/
}
.karte-title {
    margin: 0;
    font-size: 1.7rem;
    font-weight: 650;
    font-family: var(--akzent-schrift);
    color: var(--acent-color);
    letter-spacing: 0.1px;
}
.karte-preis {
    padding: 0 0.8rem;
}

.karte-preis span {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.2px;
}
.karte-preis small {
  font-size: 0.95rem;
  opacity: 0.85;
}
.karte-text {
    margin: 0;
    opacity: 0.92;
    line-height: 1.55;
    font-size: 1.02rem;
}
.karte-liste {
    margin: 0;
    padding: 12px 0 0;
    list-style: none;
    display: grid;
    gap: 10px;
    color: var(--text-color);
    font-weight: 650;
    opacity: 0.95;
  
}
.karte-liste li {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    align-items: start;
    line-height: 1.35;
}
.karte-liste li::before {
  content: "✓";
  font-weight: 900;
  color: var(--acent-color);
  opacity: 0.95;
}
.kauf-preis-box {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 50px;
}




.intro {
    padding:2rem 0rem 0rem;
}

.intro .breadcrumb {
    color: var(--link-farbe);
}

/*--------- Panel ----------*/



.panel {
    display: grid;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 22px;
    box-shadow: var(--schatten-karte);
    width: 100%;
     color: var(--text-farbe);
    max-width: 800px;
    margin: 0 auto;
   
    
}

.lead {
     color: var(--text-farbe);
}
/*--------- unterliste ----------*/
.inhalt {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.inhalt li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px ;
    border-radius: 22px;
    box-shadow: var(--schatten-btn-inset);
}

/*--------- Überschrift ----------*/

.inhalt strong {
  display: block;
  margin-bottom: 2px;
  color: var(--text-farbe);
  letter-spacing: 0.2px;
  font-family: var(--text-schrift);
}

/*--------- Text ----------*/
.inhalt span {
  display: block;
  color: var(--text-color);
  line-height: 1.6;
  font-weight: 500;
  font-family: var(--text-schrift);
}

.dot {
    margin-top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--akzent-farbe);
    flex: 0 0 8px;
    filter: drop-shadow(0px 2px 4px #00000050);
  
 
}

/*--------- Preis-area ----------*/

.preis-box {
    box-shadow: var(--schatten-btn);
    padding: 1.5rem;
    border-radius: 22px;
    display:grid; gap:12px;
    width: 100%;
    color: var(--text-farbe);
    max-width: 800px;
    margin: auto;
}

    .preis {
        padding: 1rem;
        border-radius: 22px;
      margin-top:6px;
      opacity:.9;
      line-height:1.5;
      font-size:1rem;
      box-shadow: var(--schatten-btn-inset);
       color: var(--text-farbe);
    }

.label{
      font-weight:600;
      opacity:1;
      letter-spacing:.2px;
      font-family: var(--text-schrift);
       color: var(--text-farbe);
    }
  .wert{
      font-size:1.8rem;
      font-weight:600;
      color:  var(--text-farbe) ;
      margin-top:4px;
      font-family: "Nasalization", "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
    }

.notiz {
        font-size: 0.9rem;
         color: var(--text-farbe);
        font-weight: 400;
    }

.cta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0.5rem;
}

.trust{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
    font-family: var(--text-schrift);
     color: var(--text-farbe);
}

.trust span{
    padding:8px 16px;
    border-radius:999px;
    border: 1px solid rgba(255,255,255,.15);
    box-shadow: var(--box-shadow-btn-hover);
    font-weight:600;
    font-size:12px;
    opacity:.92;
    white-space:nowrap;     
     color: var(--text-farbe);
}

.step-box {
    border-radius: 22px;
    padding: 1rem;
    box-shadow: var(--schatten-btn-inset);
     color: var(--text-farbe);
}

.step {
    font-size: 1.7rem;
    color: var(--akzent-farbe);
}

.step-box p {
  letter-spacing: .2px;
  font-weight: 500;
  font-family: var(--text-schrift);
}
    












/*--------- Brot-Nav ----------*/
.brot-nav-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    width: 100%;
    max-width: 1200px;  
    transition: 0.3s;
     color: var(--text-farbe);
   
}
.brot-outline {
    
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    
    box-shadow: var(--schatten-btn-inset),var(--schatten-btn);
}

.brot-leiste {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 0rem 2.5rem;
    box-shadow: var(--schatten-btn-inset);
    border-radius: 50px 0px 0px 50px;
    margin-right: 1rem;
    
}

.start-icon {
    font-size: 1.5rem;
    color: var(--akzent-farbe);
    filter: drop-shadow(1px 1px 2px #00000040);
   
}




.brot-link {
    font-size: 0.9rem;
   font-family: roboto;
    text-decoration: none;
    font-weight: 600;
     color: var(--text-farbe);
    letter-spacing: .2px;

}

.brot-link-active {
    color: var(--akzent-farbe);
    text-decoration: underline var(--akzent-farbe);
    text-decoration-thickness: 3px;    
    text-underline-offset: 6px;         
    text-decoration-skip-ink: auto;  
     font-weight: 700;
}

.box-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 220px;
    height: 40px;
}

.box-status-mobil {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 220px;
    height: 40px;
}

.status-ball {
    height: 1rem;
    width: 1rem;
    border-radius: 100%;
    box-shadow: var(--schatten-btn-inset);
}

.status-ball-active {
    background: var(--akzent-farbe);
    box-shadow: inset 2px 2px 5px #ffffff90, inset -4px -4px 5px #00000045, 2px 2px 5px #00000045
}

.brot-nav-mobil {
    display: none;
    position: fixed;
    bottom: 0; 
    align-items: center;
    justify-content: center;
    width: 100%;
    background: var(--hintergrund-farbe);
    box-shadow: -0px -1px 2px #a9b8ff90;
    height: 60px;

}

.brot-outline-mobil {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    
    border-radius: 50px;
    
    box-shadow: var(--schatten-btn-inset),var(--schatten-btn);
}


.brot-nav-box-mobil {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0rem;
    width: 100%;
    height: 80px;
    max-width: 280px;
}

@media (max-width: 1180px){
    .box-status {
        display: none;
    }
    .brot-leiste {
        border-radius: 50px;
    }
}

@media (max-width: 920px) {
    .brot-nav-mobil {
        display: flex;
    }
    .brot-nav-box {
        display: none;
    }
}



.highlights{

    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    background: var(--acent-color);
    color: #e8e8e8;
    border-radius: 22px;
    box-shadow: var(--box-shadow-card);
    padding: 1rem;
    margin-bottom: 1.2rem;
} 


.hl {
  flex: 1 1 200px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.329);
  background: rgba(255, 255, 255, 0.116);
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  transition: 0.3s ease-in-out;
}

.hl:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.06));
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  cursor: pointer;
  border: 1px solid #ffffff50;
  transform: scale(1.05);
}

.hl strong {
  font-size: 0.98rem;
  font-family: var(--font-display);
  font-weight: 500;
}

.hl span {
  font-size: 0.92rem;
  opacity: 0.9;
}