html { overflow-x: clip; }        
body { overflow-x: hidden; } 

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: #fff;
}




.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: #fff;
  border-bottom: 1px solid #f2f2f2;
  height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
  transition: 
    transform 0.48s cubic-bezier(.81,.13,.37,1.1),
    opacity 0.37s cubic-bezier(.68,.15,.47,1.12),
    box-shadow 0.25s,
    filter 0.34s;
  box-shadow: none;
  opacity: 1;
  filter: blur(0px);
}

/* Verstecken beim Scroll nach unten */
.navbar.hide-up {
  transform: translateY(-120%);
  opacity: 0.25;
  filter: blur(7px);
  box-shadow: none;
  pointer-events: none;
}

/* Einblenden beim Scroll nach oben */
.navbar.show-down {
  transform: translateY(0);
  opacity: 1;
  filter: blur(0);
  box-shadow: 0 6px 30px 0 rgba(60,90,60,0.13);
}

.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.navbar-center {
  display: flex;
  align-items: center;
  gap: 38px;
}

.navbar-link {
    
  color: #222;
  font-size: 1.08rem;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.17s;
  padding: 2px 6px;
}

.navbar-link:hover,
.navbar-link.active {
  color: #4ba757;
}

.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-content {
  display: none;
  position: absolute;
  left: 0;
  top: 30px;
  min-width: 160px;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 7px;
  box-shadow: 0 4px 20px 0 rgba(40,60,50,0.06);
  z-index: 9;
  padding: 9px 0;
}
.dropdown-content a {
  display: block;
  padding: 10px 18px;
  color: #223322;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.18s;
  white-space: nowrap;
}
.dropdown-content a:hover {
  background: #f5f5f5;
  color: #4ba757;
}
.dropdown.show .dropdown-content {
  display: block;
}
.dropdown-arrow {
  margin-left: 4px;
  font-size: 0.96em;
  vertical-align: middle;
  transition: transform 0.18s;
}
.dropdown.show .dropdown-arrow {
  transform: rotate(180deg);
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-container {
  position: relative;
  margin-right: 10px;
}
.warenkorb {
  height: 26px;
  width: 26px;
  object-fit: contain;
}
.cart-badge {
  position: absolute;
  top: -6px;
  right: -9px;
  background: #2d9c34;
  color: #fff;
  font-size: 0.81em;
  font-weight: 700;
  border-radius: 14px;
  padding: 0px 6px;
  min-width: 18px;
  text-align: center;
  border: 2px solid #fff;
}

.btn-get-started {
  text-decoration: none;
  background: #222;
  color: #fff;
  border: none;
  border-radius: 28px;
  padding: 13px 38px 13px 22px;
  font-size: 1.13rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 13px;
  cursor: pointer;
  transition: background 0.19s;
  box-shadow: 0 2px 10px 0 rgba(60,90,60,0.03);
  position: relative;
}
.btn-get-started:hover {
  background: #3ba750;
}
.btn-arrow {
  font-size: 1.5em;
  display: inline-block;
  margin-left: 2px;
  transition: transform 0.14s;
}
.btn-get-started:hover .btn-arrow {
  transform: translateX(4px);
}

/* Burger-Button */
.navbar-burger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  cursor: pointer;
  z-index: 25;
  margin-left: 7px;
}
.navbar-burger span {
  display: block;
  height: 3px;
  width: 26px;
  background: #222;
  border-radius: 2px;
  transition: all 0.23s;
}
.navbar-burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 7px);
}
.navbar-burger.open span:nth-child(2) {
  opacity: 0;
}
.navbar-burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -8px);
}

/* Overlay für mobile */
.navbar-mobile-overlay {
  display: none;
}

@media (max-width: 900px) {
  /* Verstecken beim Scroll nach unten */
/* .navbar.hide-up {
  display: none;
} */

/* Einblenden beim Scroll nach oben */
/* .navbar.show-down {
  display: none;
} */
   .navbar {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
   
  }
  .navbar-center,
  .navbar-right {
    position: fixed;
    top: 0;
    right: -115vw;   
    width: 87vw;
    height: 100vh;
    background: #fff;
    box-shadow: -1px 0 12px 0 rgba(40,60,50,0.07);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    z-index: 24;
    transition: right 0.23s cubic-bezier(.79,0,.48,1);
    padding-top: 85px;
    padding-left: 30px;
    padding-right: 25px;
  }
  .navbar.open .navbar-center,
  .navbar.open .navbar-right {
    right: 0;
  }
  .navbar-center {
    gap: 20px;
    margin-bottom: 32px;
  }
  .navbar-right {
    gap: 22px;
    margin-top: 0;
  }
  .navbar-link, .btn-get-started {
    font-size: 1.16rem;
    width: 100%;
    text-align: left;
    margin: 0 0 6px 0;
    padding-left: 0;
    padding-right: 0;
  }
  .cart-container {
    margin-right: 0;
  }
  .navbar-burger {
    display: flex;
  }
  .navbar-mobile-overlay {
    display: block;
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(30,40,50,0.11);
    z-index: 18;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s;
  }
  .navbar.open ~ .navbar-mobile-overlay {
    opacity: 1;
    pointer-events: all;
  }
}

/* Hide Burger on Desktop */
@media (min-width: 901px) {
  .navbar-burger,
  .navbar-mobile-overlay {
    display: none !important;
  }
  .navbar-center,
  .navbar-right {
    position: static !important;
    flex-direction: row;
    gap: 38px;
    box-shadow: none;
    background: none;
    padding: 0;
    width: auto;
    height: auto;
  }
}



/* Cart Icon with Badge */
.cart-container {
  position: relative;
  margin-right: 10px;
}
.cart-icon {
  font-size: 1.75em;
  color: #1e1e1e;
  display: block;
  line-height: 1;
}
.cart-badge {
  position: absolute;
  top: -20px;
  right: -9px;
  background: #2d9c34;
  color: #fff;
  font-size: 0.81em;
  font-weight: 700;
  border-radius: 14px;
  padding: 0px 6px;
  min-width: 18px;
  text-align: center;
  border: 2px solid #fff;
}

.btn-get-started {
  background: #222;
  color: #fff;
  border: none;
  border-radius: 28px;
  padding: 13px 38px 13px 22px;
  font-size: 1.13rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 13px;
  cursor: pointer;
  transition: background 0.19s;
  /* box-shadow: 0 2px 10px 0 rgba(60,90,60,0.03); */
  position: relative;
}
.btn-get-started:hover {
  background: #3ba750;
}
.btn-arrow {
  font-size: 1.5em;
  display: inline-block;
  margin-left: 2px;
  transition: transform 0.14s;
}
.btn-get-started:hover .btn-arrow {
  transform: translateX(4px);
}

.warenkorb {
    width: 25px;
}


.hero {
  margin-top: 50px;
  position: relative;
  
  min-height: 60vh;
  height: 530px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
}

.hero-bg {
  position: absolute;
 
  z-index: 0;
  inset: 0;
  width: 100vw;
  height: 100%;
 background: url('./images/ChatGPT Image 5. Aug. 2025, 19_12_51.png') center bottom / cover no-repeat;  /* Heller Overlay für bessere Lesbarkeit */
  background-blend-mode: darken;
  filter: brightness(0.74) blur(0px); /* Optional: blur oder dunkler */
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  padding: 0 32px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 25px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.16), 0 1px 0 #333;
}

.hero-subtitle {
  font-size: 1.21rem;
  font-weight: 400;
  margin-bottom: 38px;
  text-shadow: 0 2px 12px rgba(30,40,20,0.17);
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 17px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: #4ba757;
  color: #fff;
  font-weight: 600;
  font-size: 1.16rem;
  border: none;
  border-radius: 28px;
  padding: 15px 32px 15px 23px;
  box-shadow: 0 4px 20px 0 rgba(75,167,87,0.10);
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.12s;
  text-decoration: none;
}
.btn-primary:hover {
  background: #2d883e;
  color: #fff;
}

.btn-circle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  color: #4ba757;
  font-size: 1.31em;
  transition: background 0.18s, color 0.15s;
}
.btn-primary:hover .btn-circle {
  background: #3ba750;
  color: #fff;
}




.btn-icon-wrap {
  display: flex;
  align-items: center;
}

.btn-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e7ff86;
  color: #181818;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  margin-left: 12px;
  font-size: 1.47em;
  transition: background 0.18s;
}

.btn-primary:hover .btn-circle {
  background: #b3f346;
}

.btn-secondary {
  display: flex;
  align-items: center;
  background: #fff;
  color: #232323;
  border: 2px solid #f1f1f1;
  border-radius: 42px;
  padding: 16px 35px 16px 26px;
  font-size: 1.13rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: border 0.17s, box-shadow 0.17s;
  gap: 18px;
  /* box-shadow: 0 2px 10px 0 rgba(60,90,60,0.02); */
}

.btn-secondary:hover {
  border-color: #9bd70b;
}

.btn-arrow {
  display: flex;
  align-items: center;
  font-size: 1.41em;
  margin-left: 11px;
  transition: transform 0.14s;
}

.btn-secondary:hover .btn-arrow {
  transform: translateX(4px);
}

.how-it-works {
  width: 100%;
  padding: 68px 0 58px 0;
  background: #fff;
  text-align: center;
}

.how-label {
  color: #6fc18b;
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 16px;
  margin-top: 6px;
  letter-spacing: 0.03em;
}

.how-title {
  font-size: 2.95rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #222;
  letter-spacing: -1px;
}

.how-subtitle {
  font-size: 1.18rem;
  color: #545454;
  margin-bottom: 54px;
  line-height: 1.55;
}

.how-features {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

.how-feature {
  background: #fafafa;
  border-radius: 32px;
  padding: 44px 30px 38px 30px;
  max-width: 360px;
  flex: 1 1 300px;
  min-width: 250px;
  /* box-shadow: 0 6px 32px 0 rgba(34,80,40,0.03); */
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px 0;
}

.how-feature-icon {
  background: #6fc18b;
  color: #fff;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.12rem;
  margin-bottom: 22px;
}

.how-feature-title {
  font-size: 1.31rem;
  font-weight: 700;
  margin-bottom: 13px;
  color: #181818;
}

.how-feature-desc {
  font-size: 1.07rem;
  color: #444;
  line-height: 1.6;
}

.how-feature {
  opacity: 0;
  transform: translateY(70px);
  transition: 
    opacity 0.5s cubic-bezier(.77,.08,.52,1.1), 
    transform 0.7s cubic-bezier(.66,.02,.55,1.1);
}

/* Reveal Klasse für Sichtbarkeit */
.how-feature.reveal {
  opacity: 1;
  transform: translateY(0);
}

/* Karten nacheinander mit Verzögerung */
.how-features .how-feature:nth-child(1) { transition-delay: 0.06s; }
.how-features .how-feature:nth-child(2) { transition-delay: 0.22s; }
.how-features .how-feature:nth-child(3) { transition-delay: 0.38s; }


.features-headline {
  width: 100%;
  padding: 68px 0 38px 0;
  background: #fff;
  text-align: center;
}

.features-label {
  color: #6fc18b;
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 16px;
  margin-top: 6px;
  letter-spacing: 0.03em;
}

.features-title {
  font-size: 2.95rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #222;
  letter-spacing: -1px;
}

.features-subtitle {
  font-size: 1.18rem;
  color: #545454;
  margin-bottom: 0;
  line-height: 1.55;
}


.feature-details-grid {

  max-width: 1200px;
  margin: 0 auto 60px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  padding: 0 12px;
}

.feature-detail-card {
  background: #fcfcfc;
  border-radius: 24px;
  padding: 38px 36px 30px 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.feature-detail-card h3 {
  text-align: center;
  font-size: 1.28rem;
  font-weight: 700;
  color: #181818;
  margin-bottom: 12px;
  line-height: 1.35;
}

.feature-detail-card p {
  color: #444;
  font-size: 1.04rem;
  margin-bottom: 19px;
  line-height: 1.55;
}



/* --- Feature Cards: Reveal-on-scroll --- */
.feature-detail-card {
  opacity: 0;
  transform: translateY(26px) scale(0.98);
  filter: blur(8px);
  transition:
    opacity .55s ease-out,
    transform .65s cubic-bezier(.22,.61,.36,1),
    filter .55s ease-out,
    box-shadow .35s ease;
  will-change: opacity, transform, filter;
}

/* sichtbarer Zustand */
.feature-detail-card.reveal {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* dezenter Lift beim Hover (nur wenn bereits sichtbar) */
.feature-detail-card.reveal:hover {
  box-shadow: 0 10px 28px rgba(20,40,30,.08);
  transform: translateY(-2px);
}

.large-card > * { min-width: 0; }   /* verhindert Overflow innerhalb der Grid-Spalte */


/* Stagger (Versatz der Start-Zeit) */
.feature-details-grid .feature-detail-card:nth-child(1) { transition-delay: .05s; }
.feature-details-grid .feature-detail-card:nth-child(2) { transition-delay: .18s; }
/* die large-card soll nach den ersten beiden kommen */
.feature-details-grid .feature-detail-card.large-card { transition-delay: .32s; }

/* Bonus: large-card Inhalt getrennt animieren */
.large-card > div:first-child,
.large-card .feature-chart {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity .5s ease-out,
    transform .6s cubic-bezier(.22,.61,.36,1);
}

/* wenn die Karte sichtbar ist, Inhalte nachschieben */
.large-card.reveal > div:first-child {
  transition-delay: .10s;
  opacity: 1;
  transform: none;
}
.large-card.reveal .feature-chart {
  transition-delay: .20s;
  opacity: 1;
  transform: none;
}

/* Respektiere Nutzer-Einstellungen */
@media (prefers-reduced-motion: reduce) {
  .feature-detail-card,
  .large-card > div:first-child,
  .large-card .feature-chart {
    transition: none !important;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
  }
}



.feature-chart {
  width: 90%;
  background: #fff;
  border-radius: 18px;
  /* box-shadow: 0 2px 18px 0 rgba(40,60,50,0.07); */
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 170px;
  margin-top: 10px;
  
}
.feature-chart img {
  width: 100%;
  max-width: 390px;
  height: auto;
  border-radius: 8px;
}


.large-card {
  grid-column: 1 / span 2;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding-right: 46px;
}
.large-card > div:first-child {
  flex: 1;
}
.large-card .feature-chart {
  flex: 1.4;
  margin-top: 0;
}

.learn-more-btn {
  display: inline-flex;
  align-items: center;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 42px;
  padding: 13px 22px 13px 22px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.19s;
  margin-top: 24px;
  gap: 15px;
}

.learn-more-btn:hover {
  background: #355c20;
}
.arrow-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e7ff86;
  color: #181818;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  margin-left: 10px;
  font-size: 1.35em;
  transition: background 0.18s;
}
.learn-more-btn:hover .arrow-circle {
  background: #b3f346;
}

.essential-features {
  width: 100%;
  padding: 60px 0 48px 0;
  background: #fff;
  text-align: center;
}

.essential-label {
  color: #6fc18b;
  font-size: 1.03rem;
  font-weight: 600;
  margin-bottom: 17px;
  margin-top: 5px;
  letter-spacing: 0.03em;
}

.essential-title {
  font-size: 2.45rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #181818;
  letter-spacing: -1px;
  line-height: 1.17;
}

.essential-subtitle {
  font-size: 1.09rem;
  color: #444;
  margin-bottom: 46px;
  line-height: 1.5;
}

.essential-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 28px;
}

.essential-card {
  background: #fcfcfc;
  border-radius: 22px;
  padding: 34px 26px 24px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 280px;
  /* box-shadow: 0 6px 32px 0 rgba(34,80,40,0.07); */
}

.essential-img {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  display: block;
  border-radius: 14px;
}

.essential-card-right {
  align-items: flex-start;
  text-align: left;
  padding-top: 44px;
}

.essential-card-left {
  align-items: flex-start;
  text-align: left;
}

.essential-card h3 {
  font-size: 1.13rem;
  font-weight: 700;
  margin-bottom: 13px;
  color: #181818;
  line-height: 1.34;
}

.essential-card p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 22px;
  line-height: 1.5;
}

.essential-icons-row {
  display: flex;
  gap: 38px;
  margin-top: 10px;
}

.essential-icon-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
  
}


/* --- Essential Cards: Tilt-in + Slide, anders als Feature-Cards --- */
.essential-card {
  opacity: 0;
  transform: translateY(26px) rotateZ(0.6deg) scale(0.985);
  filter: saturate(0.8) blur(6px);
  transition:
    opacity .55s ease-out,
    transform .70s cubic-bezier(.22,.61,.36,1),
    filter .45s ease-out,
    box-shadow .35s ease;
  will-change: opacity, transform, filter;
}

/* Einflugrichtung variieren */
.essential-card-left {            /* Textkarte unten links */
  transform: translateX(-24px) translateY(18px) rotateZ(-0.6deg) scale(0.985);
}
.essential-card-right {           /* Textkarte oben rechts */
  transform: translateX(24px) translateY(18px) rotateZ(0.9deg) scale(0.985);
}

/* Bildkarten etwas „atmen“ lassen */
.essential-card .essential-img {
  transform: scale(0.965);
  opacity: 0;
  transition:
    opacity .55s ease-out .12s,
    transform .70s cubic-bezier(.22,.61,.36,1) .12s,
    filter .45s ease-out .12s;
  filter: blur(4px) saturate(0.85);
}

/* Sichtbar-Zustand */
.essential-card.reveal-ess {
  opacity: 1;
  transform: none;
  filter: none;
}
.essential-card.reveal-ess .essential-img {
  opacity: 1;
  transform: none;
  filter: none;
}

/* Mikro-Stagger innerhalb der Textkarten */
.essential-card h3,
.essential-card p,
.essential-icons-row,
.essential-btn {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .45s ease-out, transform .55s ease-out;
}
.essential-card.reveal-ess h3    { transition-delay: .08s; opacity:1; transform:none; }
.essential-card.reveal-ess p     { transition-delay: .14s; opacity:1; transform:none; }
.essential-card.reveal-ess .essential-icons-row { transition-delay: .20s; opacity:1; transform:none; }
.essential-card.reveal-ess .essential-btn       { transition-delay: .26s; opacity:1; transform:none; }

/* dezenter Lift beim Hover (nur wenn sichtbar) */
.essential-card.reveal-ess:hover {
  box-shadow: 0 10px 28px rgba(20,40,30,.08);
  transform: translateY(-2px);
}

/* Stagger über Position im Grid (oberes Paar vor dem unteren) */
.essential-grid .essential-card:nth-child(1) { transition-delay: .06s; }
.essential-grid .essential-card:nth-child(2) { transition-delay: .18s; }
.essential-grid .essential-card:nth-child(3) { transition-delay: .30s; }
.essential-grid .essential-card:nth-child(4) { transition-delay: .42s; }

/* Motion-Respect */
@media (prefers-reduced-motion: reduce) {
  .essential-card,
  .essential-card .essential-img,
  .essential-card h3,
  .essential-card p,
  .essential-icons-row,
  .essential-btn {
    transition: none !important;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
  }
}


.icon-circle {
  background: #6fc18b;
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-top: 3px;
}

.bi {
    padding: 10px;
}

.icon-title {
  font-size: 1.01rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 3px;
}

.icon-desc {
  font-size: 0.96rem;
  color: #444;
  line-height: 1.37;
}

.essential-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}
.essential-list li {
  font-size: 1rem;
  color: #353535;
  margin-bottom: 14px;
  padding-left: 26px;
  position: relative;
  line-height: 1.43;
}
.essential-list li::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #181818;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 5px;
}

.essential-btn {
  display: inline-flex;
  align-items: center;
  background: #181818;
  color: #fff;
  border: none;
  border-radius: 42px;
  padding: 13px 22px 13px 22px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  gap: 13px;
  margin-top: 9px;
  transition: background 0.18s;
}
.essential-btn:hover {
  background: #6fc18b;
  color: #222;
}
.btn-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e7ff86;
  color: #181818;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  font-size: 1.32em;
  margin-left: 6px;
  transition: background 0.17s;
}
.essential-btn:hover .btn-circle {
  background: #b3f346;
}

.faq-section {
 
  max-width: 900px;
  margin: 0 auto 80px auto;
  padding: 60px 16px 20px 16px;
  background: #fff;
  text-align: center;
}

.faq-label {
  color: #6fc18b;
  font-size: 1.07rem;
  font-weight: 600;
  margin-bottom: 13px;
  letter-spacing: 0.04em;
}

.faq-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 38px;
  color: #181818;
  letter-spacing: -1px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 14px;
}

.faq-item {
  background: #fcfcfc;
  border-radius: 18px;
  padding: 0 0 0 0;
  text-align: left;
  transition: box-shadow 0.19s;
}



.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.13rem;
  font-weight: 600;
  color: #212121;
  padding: 26px 30px 22px 30px;
  cursor: pointer;
  border-radius: 18px;
  transition: background 0.15s;
}

.faq-question:hover {
  background: #f4f7f2;
}

.faq-question i {
  font-size: 1.6em;
  color: #6fc18b;
  transition: transform 0.23s, color 0.17s;
}

.faq-item.open .faq-question i {
  transform: rotate(45deg);
  color: #212121;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 1.01rem;
  color: #444;
  padding: 0 30px;
  transition: max-height 0.25s cubic-bezier(.6,0,.8,1), padding 0.18s;
  line-height: 1.58;
  background: none;
}

.faq-answer p {
  text-decoration: underline;
}

.faq-item.open .faq-answer {
  max-height: 470px;
  padding: 0 30px 23px 30px;
}

.footer {
  width: 100%;
  background: #fcfcfc;
  padding: 46px 0 12px 0;
  font-family: 'Inter', Arial, sans-serif;
  border-top: 1px solid #f2f2f2;
  margin-top: 40px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1.1fr 1.1fr 2.1fr;
  gap: 40px 28px;
  padding: 0 24px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}

.footer-brand {
  min-width: 220px;
  max-width: 320px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-logo {
  width: 150px;
}

.footer-brandname {
  font-size: 1.25rem;
  font-weight: 700;
  color: #232;
  letter-spacing: 1.1px;
}

.footer-desc {
  color: #232;
  font-size: 0.98rem;
  line-height: 1.48;
  margin-bottom: 15px;
  margin-top: 4px;
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.footer-socials a {
  color: #181818;
  font-size: 1.2em;
  transition: color 0.17s;
}

.footer-socials a:hover {
  color: #6fc18b;
}

.footer-heading {
  font-size: 1.04rem;
  font-weight: 700;
  color: #232;
  margin-bottom: 13px;
  margin-top: 3px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.footer-col ul li {
  margin-bottom: 11px;
}

.footer-col ul li a {
  color: #232;
  text-decoration: none;
  font-size: 0.97rem;
  transition: color 0.18s;
}

.footer-col ul li a:hover {
  color: #6fc18b;
}

.footer-newsletter {
  min-width: 220px;
  max-width: 320px;
}
.footer-news-desc {
  color: #232;
  font-size: 0.93rem;
  line-height: 1.46;
  margin-bottom: 15px;
}
.footer-news-form {
  width: 100%;
  display: flex;
  gap: 0;
  margin-bottom: 17px;
}
.footer-news-form input {
  flex: 1;
  padding: 11px 15px;
  border-radius: 18px 0 0 18px;
  border: 1px solid #e0e0e0;
  font-size: 1rem;
  outline: none;
  background: #fff;
  transition: border 0.17s;
}
.footer-news-form input:focus {
  border: 1.2px solid #6fc18b;
}
.footer-news-form button {
  border: none;
  background: #e7ff86;
  color: #181818;
  border-radius: 0 18px 18px 0;
  padding: 0 18px;
  font-size: 1.23em;
  cursor: pointer;
  transition: background 0.17s;
}
.footer-news-form button:hover {
  background: #b3f346;
  color: #181818;
}

.footer-copyright {
  color: #232;
  font-size: 0.98rem;
  margin-top: 6px;
  margin-bottom: 4px;
  text-align: center;
}

.footer-heading > ul {
    text-align: center;
  }

.footer-text {
  text-align: center;
  color: #232;
  display: flex;
  align-items: center;
}

.footer-text a img {
  width: 80px;
  margin-left: 8px;
}


.fido-section {
  width: 100%;
  background: #fff;
  padding: 70px 0 64px 0;
}

.fido-container {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 18px;
}

.fido-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #1a3320;
  margin-bottom: 14px;
  text-align: center;
}

.fido-lead {
  font-size: 1.16rem;
  color: #363636;
  text-align: center;
  margin-bottom: 32px;
  opacity: 0.98;
}

.fido-grid {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.fido-info {
  flex: 2 1 400px;
  background: #fafafa;
  border-radius: 16px;
  
  padding: 38px 30px;
  min-width: 320px;
  max-width: 550px;
  font-size: 1.08rem;
  color: #272727;
}

.fido-info h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin: 18px 0 6px 0;
  color: #3ba750;
}

.fido-benefits {
  flex: 1.2 1 300px;
  display: flex;
  flex-direction: column;
  gap: 23px;
  min-width: 260px;
  max-width: 370px;
  margin-top: 6px;
}



.fido-benefit {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 3px 13px 0 rgba(70,180,110,0.09);
  padding: 19px 20px 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: 1.05rem;
  color: #222;
}

.fido-benefit:hover {
box-shadow: 0 5px 18px 0 rgba(70, 180, 110, 0.144);
}

.fido-benefit i {
  color: #6fc18b;
  font-size: 2.0rem;
  margin-top: 2px;
  min-width: 30px;
}

.fido-benefit b {
  color: #1a6639;
}





.securitykey-section {
  width: 100%;
  background: #fff;
  padding: 70px 0 60px 0;
}
.securitykey-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}
.securitykey-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #19472b;
  text-align: center;
  margin-bottom: 14px;
}
.securitykey-lead {
  font-size: 1.13rem;
  color: #323;
  text-align: center;
  margin-bottom: 33px;
  opacity: 0.97;
}
.securitykey-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 27px;
  margin-bottom: 29px;
}
.securitykey-benefit {
  background: #fafafa;
  border-radius: 16px;
  box-shadow: 0 4px 22px 0 rgba(111,193,139,0.09);
  padding: 25px 22px 21px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.06rem;
  color: #232;
  transition: box-shadow 0.18s, transform 0.16s;
}
.securitykey-benefit:hover {
  box-shadow: 0 8px 26px 0 rgba(80,180,110,0.15);
  transform: translateY(-5px) scale(1.03);
}
.securitykey-benefit i {
  color: #6fc18b;
  font-size: 2.1rem;
  margin-top: 3px;
  min-width: 32px;
}
.securitykey-benefit b {
  color: #21724a;
  font-weight: 700;
}
.securitykey-fazit {
  background: #f2fdf6;
  border-radius: 13px;
  padding: 17px 20px;
  font-size: 1.11rem;
  color: #205c38;
  font-weight: 600;
  margin-top: 15px;
  box-shadow: 0 3px 10px 0 rgba(60,190,110,0.06);
  text-align: center;
}
@media (max-width: 700px) {
  .securitykey-title { font-size: 1.18rem; }
  .securitykey-lead { font-size: 0.99rem; }
  .securitykey-benefit { font-size: 0.98rem; padding: 16px 10px 13px 11px;}
  .securitykey-fazit { font-size: 1.01rem; }
  .securitykey-benefits-grid { gap: 15px; }
 
}



.impressum-section {
  width: 100%;
  background: #fff;
  padding: 60px 0 50px 0;
}

.impressum-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 16px;
  background: #fafafa;
  border-radius: 16px;
  box-shadow: 0 2px 22px 0 rgba(111,193,139,0.09);
  color: #232;
}

.impressum-container h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: #1c3924;
}

.impressum-container h3 {
  font-size: 1.13rem;
  margin-top: 28px;
  color: #3ba750;
}

.impressum-container p {
  font-size: 1.08rem;
  margin-bottom: 18px;
  line-height: 1.57;
}

.impressum-container a {
  color: #4ba757;
  text-decoration: underline;
}

.agb-section {
  width: 100%;
  background: #fff;
  padding: 60px 0 50px 0;
}
.agb-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 16px;
  background: #fafafa;
  border-radius: 16px;
  box-shadow: 0 2px 22px 0 rgba(111,193,139,0.09);
  color: #232;
}
.agb-container h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: #1c3924;
}
.agb-container h3 {
  font-size: 1.13rem;
  margin-top: 28px;
  color: #3ba750;
}
.agb-container p {
  font-size: 1.08rem;
  margin-bottom: 18px;
  line-height: 1.57;
}
.agb-container a {
  color: #4ba757;
  text-decoration: underline;
}


.privacy-section {
  width: 100%;
  background: #fff;
  padding: 60px 0 50px 0;
}
.privacy-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 16px;
  background: #fafafa;
  border-radius: 16px;
  box-shadow: 0 2px 22px 0 rgba(111,193,139,0.09);
  color: #232;
}
.privacy-container h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: #1c3924;
}
.privacy-container h3 {
  font-size: 1.13rem;
  margin-top: 28px;
  color: #3ba750;
}
.privacy-container p {
  font-size: 1.08rem;
  margin-bottom: 18px;
  line-height: 1.57;
}
.privacy-container a {
  color: #4ba757;
  text-decoration: underline;
}
.support-section {
  width: 100%;
  background: #f8fbf8;
  padding: 70px 0 60px 0;
}
.support-container {
  max-width: 470px;
  margin: 0 auto;
  padding: 0 15px;
}
.support-card {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 3px 20px 0 rgba(111,193,139,0.13);
  padding: 40px 28px 30px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.support-icon {
  background: #e7f7ea;
  border-radius: 50%;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.7rem;
  color: #4ba757;
  margin-bottom: 8px;
}
.support-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: #1c3924;
  text-align: center;
}
.support-desc {
  color: #232;
  font-size: 1.09rem;
  text-align: center;
  opacity: 0.98;
}
.support-form {
  
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 15px 0 0 0;
}

.support-form input,
.support-form textarea {
  
  border: 1.5px solid #bde4cb;
  border-radius: 7px;
  padding: 12px;
  font-size: 1.04rem;
  background: #f9faf9;
  margin-bottom: 0;
  transition: border 0.15s;
}
.support-form input:focus,
.support-form textarea:focus {
  outline: none;
  border: 1.5px solid #4ba757;
  background: #f6fbf7;
}
.support-btn {
  background: #4ba757;
  color: #fff;
  border: none;
  border-radius: 9px;
  padding: 13px 32px;
  font-size: 1.09rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.16s;
  box-shadow: 0 2px 10px 0 rgba(60,90,60,0.03);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto 0 auto;
}
.support-btn:hover {
  background: #21724a;
}
.support-alt-contact {
  text-align: center;
  font-size: 1.01rem;
  margin-top: 10px;
  color: #444;
}
.support-alt-contact a {
  color: #4ba757;
  font-weight: 700;
  word-break: break-all;
}

/* Popup Hintergrund */


/* Popup Box */
.popup-content {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  animation: fadeIn 0.3s ease;
}

/* Schließen Button */
.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #666;
}

/* Modal / Popup */
.modal {
  display: none;               /* versteckt */
  position: fixed;
  inset: 0;                    /* top/right/bottom/left: 0 */
  z-index: 9999;
  background: rgba(0,0,0,.45);
  align-items: center;
  justify-content: center;
}

.modal.show { display: flex; animation: fadeIn .18s ease-out; }

.modal__box {
  background: #fff;
  width: min(92vw, 420px);
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,.15);
  transform: translateY(8px);
  animation: pop .22s ease-out forwards;
  text-align: center;
}

.modal__title { margin: 0 0 8px; font-weight: 700; color: #181818; }
.modal__close {
  position: absolute;
  right: 14px; top: 10px;
  font-size: 24px; line-height: 1;
  border: none; background: transparent; cursor: pointer; color: #666;
}













.cart-container { cursor: pointer; }
/* Overlay darf im Normalzustand keine Klicks abfangen */
.navbar-mobile-overlay {
  pointer-events: none;
}

/* Nur wenn das Menü offen ist (z. B. .navbar.open) soll das Overlay klickbar sein */
.navbar.open ~ .navbar-mobile-overlay {
  pointer-events: auto;
}
.cart-container { position: relative; z-index: 10010; }






@keyframes fadeIn { from {opacity:0} to {opacity:1} }
@keyframes pop    { to   {transform: translateY(0)} }

/* Optional: Loading-State am Button */
.support-btn.loading { opacity: .7; pointer-events: none; }


@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.9);}
  to   {opacity: 1; transform: scale(1);}
}


@media (max-width: 600px) {
  .support-card { padding: 22px 7vw 17px 7vw;}
  .support-title { font-size: 1.18rem;}
}




@media (max-width: 900px) {
  .fido-grid {
    flex-direction: column;
    gap: 27px;
    align-items: stretch;
  }
  .fido-info, .fido-benefits {
    max-width: 100vw;
    min-width: 0;
  }
}



.desktop-only { display: block; }
.mobile-only { display: none; }

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px 16px;
  }
  .footer-col,
  .footer-brand,
  .footer-newsletter {
    min-width: 0;
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 16px;
    
  }
  .footer {
    padding: 27px 0 5px 0;
  }
  .footer-col {
    margin-bottom: 4px;
    align-items: center;
  }
  .desktop-only { display: none; }
  .mobile-only { display: block; text-align: left; }

  
}


@media (max-width: 600px) {
  .faq-section {
    padding: 36px 6px 6px 6px;
  }
  .faq-title {
    font-size: 1.37rem;
  }
  .faq-question {
    font-size: 1.03rem;
    padding: 17px 12px 16px 16px;
  }
  .faq-answer {
    font-size: 0.96rem;
    padding: 0 13px;
  }
  .faq-item.open .faq-answer {
    padding: 0 13px 17px 13px;
  }
  .essential-icons-row {
  flex-direction: column;
}
}


/* Responsive */
@media (max-width: 950px) {
  .essential-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .essential-card,
  .essential-card-left,
  .essential-card-right {
    align-items: flex-start !important;
    text-align: left !important;
  }
}


/* Responsive Design */
@media (max-width: 900px) {
  .feature-details-grid { grid-template-columns: 1fr; gap: 24px; }
  .large-card { 
    grid-column: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding-right: 16px;   /* kleiner, damit nichts rausdrückt */
  }
  .large-card .feature-chart { 
    width: 100%;
    margin-top: 12px;
    padding: 0;
  }
}


@media (max-width: 1024px) {
  .features-title {
    font-size: 2.18rem;
  }
  .features-headline {
    padding: 36px 0 18px 0;
  }
}


@media (max-width: 1024px) {
  .how-features {
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: center; 
  }

  .how-feature {
    flex: 1; /* nimmt gleiche Höhe wie die anderen */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Inhalt schön verteilen */
    padding: 44px 20px 38px 20px; /* angepasster Padding für mobile Breite */
  }
}
@media (max-width: 780px) {
  .hero { height: 410px; min-height: 340px;}
  .hero h1 { font-size: 2.1rem; }
  .hero-content { padding: 0 10px;}
}
@media (max-width: 520px) {
  .hero { height: 450px; min-height: 200px;}
  .hero h1 { font-size: 1.15rem; }
  .hero-subtitle { font-size: 0.99rem; }
  .btn-primary { padding: 10px 18px 10px 14px; font-size: 0.98rem;}
  .btn-circle { width: 29px; height: 29px; font-size: 1em;}
}

@media (max-width: 650px) {
  .hero h1 {
    font-size: 2.15rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-content {
    padding: 0 15px;
  }
  .features-title {
    font-size: 1.18rem;
  }
}




@media (max-width: 900px) {
  .navbar {
    padding: 13px 28px 13px 14px;
    flex-wrap: wrap;
  }
  .navbar-center {
    gap: 15px;
  }
  .btn-get-started {
    padding: 10px 18px 10px 14px;
    font-size: 1em;
  }
}
