
    /* === Globale Reset & Variablen === */
    :root {
      --bg-primary: #0f1620;
      --bg-secondary: #1a2330;
      --bg-card: #242e40;
      --text-primary: #e0e6ed;
      --text-secondary: #a0aec0;
      --accent: #5d8af7;
      --accent-hover: #4a70d9;
      --danger: #e53e3e;
      --warning: #dd6b20;
      --success: #38a169;
      --border: #334155;
      --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
      --shadow-md: 0 6px 16px rgba(0, 0, 0, 0.4);
      --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.5);
      --radius: 12px;
      --transition: all 0.3s ease;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', system-ui, sans-serif;
      background-color: var(--bg-primary);
      color: var(--text-primary);
      line-height: 1.6;
      overflow-x: hidden;
    }

    img {
      max-width: 100%;
      height: auto;
    }

    /* === Header & Navigation === */
    header {
      background: rgba(15, 22, 32, 0.95);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      position: sticky;
      top: 0;
      z-index: 100;
      padding: 1rem 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
    }

    .logo {
      font-size: 1.8rem;
      font-weight: 700;
      color: white;
      letter-spacing: -0.5px;
      text-decoration: none;
      display: flex;
      align-items: center;
    }

    .logo span {
      color: var(--accent);
    }

    .logo-img {
      height: 40px;
      margin-right: 10px;
    }

    nav ul {
      display: flex;
      list-style: none;
      gap: 2rem;
    }

    nav a {
      color: var(--text-secondary);
      text-decoration: none;
      font-weight: 500;
      transition: var(--transition);
      position: relative;
    }

    nav a:hover {
      color: white;
    }

    nav a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: var(--transition);
    }

    nav a:hover::after {
      width: 100%;
    }

    .cta-button {
      background: linear-gradient(135deg, var(--accent), var(--accent-hover));
      color: white;
      padding: 0.6rem 1.2rem;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      transition: var(--transition);
      box-shadow: var(--shadow-sm);
    }

    .cta-button:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    @media (max-width: 768px) {
      nav ul {
        display: none;
      }

      .menu-toggle {
        display: block;
        font-size: 1.5rem;
        color: white;
        cursor: pointer;
      }
    }

    .menu-toggle {
      display: none;
    }

    /* === Hero Section === */
    .hero {
      min-height: 80vh;
      display: flex;
      align-items: center;
      background: linear-gradient(to bottom, var(--bg-primary), var(--bg-secondary));
      padding: 4rem 5%;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 50%;
      height: 100%;
      background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(36,46,64,0.3)"/></svg>');
      background-size: cover;
    }

    .hero-content {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .hero-text h1 {
      font-size: 3.2rem;
      margin-bottom: 1.5rem;
      line-height: 1.2;
      background: linear-gradient(135deg, #fff, var(--accent));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-text p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      color: var(--text-secondary);
    }

    .hero-stats {
      display: flex;
      gap: 2rem;
      margin: 2rem 0;
    }

    .stat-item {
      text-align: center;
    }

    .stat-number {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--accent);
      line-height: 1;
    }

    .stat-label {
      font-size: 0.9rem;
      color: var(--text-secondary);
    }

    .hero-image {
      position: relative;
    }

    .hero-image img {
      border-radius: var(--radius);
      box-shadow: var(--shadow-lg);
      transform: perspective(800px) rotateY(-10deg);
      transition: transform 0.5s ease;
    }

    .hero-image:hover img {
      transform: perspective(800px) rotateY(0);
    }

    .hero-buttons {
      display: flex;
      gap: 1rem;
      margin-top: 2rem;
    }

    .btn {
      display: inline-block;
      padding: 1rem 2rem;
      border-radius: 40px;
      text-decoration: none;
      font-weight: 600;
      transition: var(--transition);
      text-align: center;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--accent), var(--accent-hover));
      color: white;
      box-shadow: 0 4px 12px rgba(93, 138, 247, 0.4);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(93, 138, 247, 0.5);
    }

    .btn-secondary {
      background: transparent;
      color: var(--text-primary);
      border: 2px solid var(--accent);
    }

    .btn-secondary:hover {
      background: var(--accent);
      color: white;
    }

    /* === Features Section === */
    .features {
      padding: 6rem 5%;
      background: var(--bg-primary);
    }

    .section-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .section-title {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      color: white;
    }

    .section-subtitle {
      font-size: 1.2rem;
      color: var(--text-secondary);
      max-width: 700px;
      margin: 0 auto;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .feature-card {
      background: var(--bg-card);
      padding: 2rem;
      border-radius: var(--radius);
      text-align: center;
      transition: var(--transition);
      box-shadow: var(--shadow-sm);
    }

    .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
    }

    .feature-icon {
      font-size: 3rem;
      margin-bottom: 1.5rem;
      color: var(--accent);
    }

    .feature-title {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: white;
    }

    .feature-desc {
      color: var(--text-secondary);
    }

    /* === How It Works === */
    .how-it-works {
      padding: 6rem 5%;
      background: var(--bg-secondary);
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 4rem auto 0;
    }

    .step {
      text-align: center;
      position: relative;
    }

    .step-number {
      width: 50px;
      height: 50px;
      background: var(--accent);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: 700;
      margin: 0 auto 1.5rem;
    }

    .step-title {
      font-size: 1.3rem;
      margin-bottom: 1rem;
      color: white;
    }

    .step-desc {
      color: var(--text-secondary);
    }

    /* === Testimonials === */
    .testimonials {
      padding: 6rem 5%;
      background: var(--bg-primary);
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 4rem auto 0;
    }

    .testimonial {
      background: var(--bg-card);
      padding: 2rem;
      border-radius: var(--radius);
      box-shadow: var(--shadow-sm);
    }

    .testimonial-text {
      font-style: italic;
      margin-bottom: 1.5rem;
      color: var(--text-primary);
    }

    .testimonial-author {
      display: flex;
      align-items: center;
    }

    .author-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      margin-right: 1rem;
      background: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      color: white;
    }

    .author-info h4 {
      color: white;
      margin-bottom: 0.2rem;
    }

    .author-info p {
      color: var(--text-secondary);
      font-size: 0.9rem;
    }

    /* === Pricing === */
    .pricing {
      padding: 6rem 5%;
      background: var(--bg-secondary);
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 4rem auto 0;
    }

    .pricing-card {
      background: var(--bg-card);
      padding: 3rem 2rem;
      border-radius: var(--radius);
      text-align: center;
      position: relative;
      transition: var(--transition);
      box-shadow: var(--shadow-sm);
    }

    .pricing-card.featured {
      border: 2px solid var(--accent);
      transform: scale(1.05);
    }

    .pricing-card.featured::before {
      content: 'Empfohlen';
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--accent);
      color: white;
      padding: 0.5rem 1.5rem;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
    }

    .pricing-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
    }

    .pricing-card.featured:hover {
      transform: scale(1.05) translateY(-5px);
    }

    .pricing-title {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: white;
    }

    .pricing-price {
      font-size: 3rem;
      font-weight: 700;
      color: var(--accent);
      margin-bottom: 2rem;
    }

    .pricing-features {
      list-style: none;
      margin-bottom: 2rem;
    }

    .pricing-features li {
      padding: 0.5rem 0;
      color: var(--text-secondary);
      border-bottom: 1px solid var(--border);
    }

    .pricing-features li:last-child {
      border-bottom: none;
    }

    /* === CTA Section === */
    .cta-section {
      padding: 6rem 5%;
      background: linear-gradient(135deg, var(--accent), var(--accent-hover));
      color: white;
      text-align: center;
    }

    .cta-content {
      max-width: 800px;
      margin: 0 auto;
    }

    .cta-title {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
    }

    .cta-text {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      opacity: 0.9;
    }

    /* === Footer === */
    footer {
      background: var(--bg-secondary);
      padding: 4rem 5% 2rem;
      border-top: 1px solid var(--border);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-column h4 {
      font-size: 1.2rem;
      margin-bottom: 1.5rem;
      color: white;
    }

    .footer-column ul {
      list-style: none;
    }

    .footer-column ul li {
      margin-bottom: 0.8rem;
    }

    .footer-column a {
      color: var(--text-secondary);
      text-decoration: none;
      transition: var(--transition);
    }

    .footer-column a:hover {
      color: var(--accent);
    }

    .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }

    .social-links a {
      display: inline-block;
      width: 40px;
      height: 40px;
      background: var(--bg-card);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
    }

    .social-links a:hover {
      background: var(--accent);
      transform: translateY(-3px);
    }

    .newsletter-form {
      display: flex;
      margin-top: 1rem;
    }

    .newsletter-input {
      flex: 1;
      padding: 0.8rem 1rem;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 30px 0 0 30px;
      color: var(--text-primary);
    }

    .newsletter-button {
      padding: 0 1.5rem;
      background: var(--accent);
      color: white;
      border: none;
      border-radius: 0 30px 30px 0;
      cursor: pointer;
      transition: var(--transition);
    }

    .newsletter-button:hover {
      background: var(--accent-hover);
    }

    .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid var(--border);
      color: var(--text-secondary);
      font-size: 0.9rem;
    }
    .footer-column h4 span {
      color: var(--accent);
    }

    /* === Security Elements === */
.security-assurance {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(93, 138, 247, 0.1);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
}

.security-text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.security-text i {
  color: var(--accent);
  margin-right: 0.5rem;
}

.security-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--success);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.security-info {
  line-height: 1.6;
}

.security-info i {
  color: var(--accent);
  width: 1rem;
  margin-right: 0.5rem;
}

.security-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.5rem 0;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: white;
}

.security-highlight i {
  color: var(--accent);
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .security-assurance {
    text-align: center;
  }
  
  .security-highlight {
    flex-direction: column;
    text-align: center;
  }
}

    /* === Responsive Anpassungen === */
    @media (max-width: 768px) {
      .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
      }
      
      .hero-text h1 {
        font-size: 2.5rem;
      }
      
      .hero-stats {
        justify-content: center;
      }
      
      .hero-buttons {
        justify-content: center;
      }
      
      .hero::before {
        display: none;
      }
      
      nav ul {
        flex-direction: column;
        background: var(--bg-secondary);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 1rem 0;
        border-radius: var(--radius);
        box-shadow: var(--shadow-md);
      }
      
      nav ul.active {
        display: flex;
      }
      
      .menu-toggle {
        display: block;
      }
      
      .pricing-card.featured {
        transform: scale(1);
      }
    }
        .limited-offer {
      border-left: 4px solid var(--accent);
      padding: 15px;
      margin: 20px 0;
      border-radius: 4px;
    }
    
    .offer-counter {
      font-weight: bold;
      color: #d32f2f;
    }
    .faq-section {
      max-width: 1200px;
      margin: auto;
      padding: 6rem 5%;
    }
    
    .faq-item {
      margin-bottom: 15px;
      border-bottom: 1px solid #eee;
      padding-bottom: 15px;
    }
    
    .faq-question {
      font-weight: bold;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .faq-answer {
      margin-top: 10px;
      display: none;
    }
    
    .faq-item.active .faq-answer {
      display: block;
    }
        .trust-badges {
      display: flex;
      justify-content: center;
      gap: 30px;
      margin: 30px 0;
      flex-wrap: wrap;
    }
    
    .trust-badge {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.2rem;
    }
    
    .trust-badge i {
      color: #4CAF50;
      font-size: 20px;
    }
    .benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  text-align: center;
}