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

  
html {
    scroll-behavior: smooth;
  }

  .scroll-reveal {
    opacity: 0;
    transform: translateY(30px); /* Inhalt kommt von unten */
    transition: opacity 0.6s cubic-bezier(0.25, 0.1, 0.25, 1),
                transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
  }
  
  .scroll-reveal.show {
    opacity: 1;
    transform: translateY(0);
  }
  
  

  body {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    background: #fff;
    color: #111;
    line-height: 1.6;
  }

  /* Navigation */
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    position: sticky;
    top: 0;
    background: white;
    z-index: 100;
  }

  .logo {
    font-weight: 600;
    font-size: 1.2rem;
    color: #2ecc71;
  }

  .nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #111;
    font-weight: 500;
  }

  .nav .btn {
    padding: 8px 16px;
    border-radius: 30px;
    background: #2ecc71;
    color: white;
  }

  /* Hero */
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 80px 10%;
    gap: 40px;
  }
  
  .hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .hero-text p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
  }

  .buttons {
    display: flex;          
    gap: 15px;                  
    margin-bottom: 20px;        
    justify-content: center;   
    align-items: center;         
  }

  .store {
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1),
                box-shadow 0.2s cubic-bezier(0.25, 0.1, 0.25, 1),
                background 0.2s ease, color 0.2s ease;
  }

  .store.primary {
    background: #2ecc71;
    color: white;
  }

  .store.secondary {
    border: 2px solid #2ecc71;
    color: #2ecc71;
    background: transparent;
  }

  .store:hover {
    transform: scale(1.05); /* leicht vergrößern */
    box-shadow: 0 8px 20px rgba(0,0,0,0.15); /* sanfter Shadow */
  }
  
  /* Optional: Hover-Farbanpassung */
  .store.primary:hover {
    background: #27ae60; /* etwas dunkleres Grün */
  }
  
  .store.secondary:hover {
    background: #2ecc71;
    color: white;
  }
  
  /* Tap/Active-Feedback */
  .store:active {
    transform: scale(0.97); /* leicht verkleinern beim Tippen */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  .primary {
    background: #2ecc71;
    color: white;
  }

  .secondary {
    border: 2px solid #2ecc71;
    color: #2ecc71;
  }

  .trust {
    color: #777;
    font-size: 0.9rem;
    margin-top: 10px;
  }

  .hero-img img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  }

  /* Stats */
  .stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
    padding: 60px 10%;
    background: #f9f9f9;
  }

  .stats h2 {
    font-size: 2rem;
    color: #2ecc71;
    margin-bottom: 10px;
  }

  /* Features */
  .features {
    padding: 80px 10%;
    text-align: center;
  }
  
  .features h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .features .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
  }
  
  /* Cards */
  .card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: left;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    cursor: pointer;
    min-height: 180px;
  
    /* Ausgangszustand für Animation */
    opacity: 0;
    transform: translateY(20px);
    transition: 
      opacity 0.45s cubic-bezier(0.25, 0.1, 0.25, 1),
      transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
  }
  
  .card.show {
    opacity: 1;
    transform: translateY(0);
  }
  
  .card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #111;
  }
  
  .card p {
    font-size: 0.95rem;
    color: #555;
    opacity: 0;
    transition: opacity 0.3s ease;
    margin-top: 0;
  }
  
  /* Hover-Effekt */
  .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
    border-color: #2ecc71;
  }
  
  .card:hover p {
    opacity: 1;
    margin-top: 10px;
  }
  
  /* Optional: gestaffelte Animation beim Scrollen */
  

  /* How it works */
  .how {
    padding: 80px 10%;
    background: #f9f9f9;
    text-align: center;
  }

  .how h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .how ol {
    list-style: decimal inside;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
  }
  /* Our Team */
  .team {
    text-align: center;
    padding: 80px 10%;
    background: #f9f9f9;
  }
  
  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 40px;
  }
  
  .team-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .team-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
  }
  
  .team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
  }
  

  /* CTA */
  .cta-section {
    text-align: center;
    padding: 80px 10%;
  }

  .cta-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .cta-section p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
  }

  /* Footer */
  footer {
    text-align: center;
    padding: 30px;
    background: #111;
    color: #fff;
  }