/* Hero-Bereich */
  .hero {
    padding: 200px 0 220px;
    min-height: 100vh;    
    background-color: var(--darker-bg);
    background-image:
      radial-gradient(circle at 20% 30%, rgba(0, 255, 102, 0.12) 0%, transparent 50%),
      radial-gradient(circle at 85% 70%, rgba(0, 204, 85, 0.1) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--neon-gradient);
    box-shadow: 0 0 25px 3px rgba(0, 255, 102, 0.7);
  }
  
  .hero::after {
    content: none;
  }
  
  .hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  
  .hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--light-text);
    text-shadow: 0 0 15px rgba(0, 255, 102, 0.2);
    line-height: 1.2;
  }
  
  .hero h1 span {
    background: var(--neon-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .hero p {
    font-size: 20px;
    max-width: 650px;
    margin: 0 auto 40px;
    color: rgba(248, 248, 248, 0.9);
    line-height: 1.5;
  }
  
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 120px 20px;
  }

  .hero-left h1 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--light-text);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 15px rgba(0, 255, 102, 0.2);
  }

  .hero-left h1 span {
    background: var(--neon-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .hero-subline {
    font-size: 20px;
    color: rgba(248, 248, 248, 0.9);
    margin-bottom: 40px;
    line-height: 1.5;
  }

  .hero-cta h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 10px;
  }

  .hero-cta p {
    font-size: 17px;
    color: rgba(248, 248, 248, 0.85);
    margin-bottom: 30px;
  }

  .hero-button {
    padding: 18px 36px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 10px;
    border: none;
    background: var(--neon-gradient);
    color: #000;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.4);
    transition: all 0.3s ease;
  }

  .hero-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 255, 102, 0.6);
  }

  .hero-right img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 0 40px rgba(0, 255, 102, 0.1);
  }

    /* Responsive Design */
    @media (max-width: 900px) {
    .hero-grid {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .hero-left {
      order: 1;
    }

    .hero-right {
      order: 2;
      margin-top: 40px;
    }
  }

  .newsletter-content h2 {
    font-size: 34px;
    color: var(--light-text);
    margin-bottom: 15px;
  }
  
  .newsletter-content p {
    font-size: 18px;
    color: rgba(248, 248, 248, 0.8);
    margin-bottom: 30px;
  }
  
  .newsletter-form {
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 600px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .newsletter-input {
    flex: 1;
    padding: 18px 24px;
    border-radius: 10px;
    border: none;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--light-text);
    font-size: 17px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
  }
  
  .newsletter-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 255, 102, 0.4);
  }
  
  .submit-button {
    padding: 18px 36px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 10px;
    border: none;
    background: var(--neon-gradient);
    font-family: sans-serif;
    color: #000;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.5);
    transition: all 0.3s ease;
  }
  
  .submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 255, 102, 0.7);
  }

  /* Container für das Formular: vertikal verteilen */
.adjusted-form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/* Eingabefelder oben */
.form-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Button unten */
.form-bottom {
  margin-top: 10px;
  padding-bottom: 30px;
}

.custom-success-message {
  margin-top: 20px;
  padding: 16px 24px;
  background-color: rgba(0, 255, 102, 0.1);
  border-left: 4px solid var(--neon-green);
  color: var(--light-text);
  font-size: 16px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 255, 102, 0.2);
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
}

/* Umschließe alles außer Footer in ein Wrapper-Element */
.main-content {
  flex: 1; /* wächst und drückt Footer nach unten */
  display: flex;
  flex-direction: column;
}
footer {
  margin-top: auto;
}


/* Vorteile */

 .highlight-section {
    padding: 60px 20px;
    margin: 10px 0;
  }

  .benefits-modern {
    padding: 100px 0;
    text-align: center;
    background-color: var(--dark-bg);
  }
  
  .benefits-modern-title {
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--light-text);
  }
  
  .benefits-modern-title span {
    background: var(--neon-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .benefits-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .benefit-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: left;
  }
  
  .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 45px rgba(0, 255, 102, 0.15);
  }
  
  .benefit-icon {
    font-size: 30px;
    color: var(--neon-green);
    margin-bottom: 20px;
  }
  
  .benefit-card h3 {
    font-size: 18px;
    color: var(--light-text);
    margin-bottom: 10px;
  }
  
  .benefit-card p {
    font-size: 15px;
    color: rgba(248, 248, 248, 0.75);
  }

/* App-Teaser */

  .app-teaser {
    background-color: var(--dark-bg); /* passt besser zum Rest */
    padding: 80px 0;
    position: relative;
  }
  
  
  .app-teaser-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
  }
  
  .app-teaser-content {
    flex: 1;
    min-width: 300px;
  }
  
  .teaser-title {
    font-size: 36px;
    color: var(--light-text);
    margin-bottom: 20px;
    font-family: 'Orbitron', sans-serif;
  }
  
  .teaser-subtitle {
    font-size: 20px;
    color: rgba(248, 248, 248, 0.85);
    margin-bottom: 15px;
    line-height: 1.5;
  }
  
  .teaser-info {
    font-size: 16px;
    color: rgba(248, 248, 248, 0.65);
    margin-bottom: 15px;
  }
  
  .teaser-badge {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    background: rgba(0,255,102,0.1);
    color: var(--neon-green);
    padding: 10px 18px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(0,255,102,0.2);
    box-shadow: 0 0 10px rgba(0,255,102,0.2);
  }
  
  .app-teaser-visual {
    flex: 1;
    min-width: 300px;
    text-align: center;
  }
  
  .app-teaser-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 255, 102, 0.1);
    opacity: 0.9;
  }

  .app-teaser-image {
    max-width: 400px;
    width: 70%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.15);
  }

    .teaser-cta {
    font-size: 18px;
    color: rgba(248, 248, 248, 0.8);
    text-align: left;
    margin-bottom: 30px;
    }

    .cta-link {
    color: var(--neon-green);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed rgba(0, 255, 102, 0.2);
    transition: all 0.3s;
    }

    .cta-link:hover {
    color: var(--light-text);
    text-shadow: 0 0 6px rgba(0, 255, 102, 0.6);
    border-color: transparent;
    }

/* Vision-Bereich (About) */
  .about {
    padding: 80px 0;
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
  }
  
  .about-container {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 60px;
  }
  
  .about-image {
    max-width: 400px;
    width: 70%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.15);
  }  
  
  .about-content {
    flex: 1;
  }
  
  .about-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--light-text);
  }
  
  .about-content h2 span {
    font-family: 'Orbitron', sans-serif;
    background: var(--neon-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .about-content p {
    margin-bottom: 20px;
    color: rgba(248, 248, 248, 0.8);
    font-size: 17px;
  }
  
/* Kontakt */
  .contact-compact {
    padding: 40px 0 50px; /* vorher war unten 100px */
    background-color: var(--dark-bg); /* bleibt dunkler Stil */
    text-align: center;
  }
  
  .contact-compact .section-title {
    font-size: 32px;
    margin-bottom: 20px;
  }
  
  .contact-text {
    font-size: 18px;
    color: rgba(248, 248, 248, 0.8);
    margin-bottom: 40px;
  }
  
  .contact-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .contact-icon-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--light-text);
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 10px;
    background-color: var(--card-bg);
    box-shadow: 0 0 0 rgba(0, 255, 102, 0);
  }
  
  .contact-icon-link i {
    font-size: 20px;
    color: var(--neon-green);
  }
  
  .contact-icon-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.4);
    background-color: var(--card-bg);
    color: var(--light-text);
  }
  
  .contact-icon-link:hover i {
    color: var(--neon-green);
  }
  