
    /* SOLUTION SECTION – MODERN & KRAFTVOLL */
.solution-sec {
  padding: 80px 0;
  background: #f8fafc;
}

.solution-badge {
  display: inline-block;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.25);
  padding: 6px 16px;
  border-radius: 60px;
  font-size: 12px;
  font-weight: 600;
  color: #22c55e;
  margin-bottom: 24px;
}

.solution-sec h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #0f172a;
}

.solution-sec .gradient {
  background: linear-gradient(135deg, #22c55e, #3b82f6);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.solution-lead {
  font-size: 18px;
  color: #475569;
  max-width: 600px;
  margin-bottom: 48px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.solution-card {
  background: white;
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: 0 4px 6px -2px rgba(0,0,0,0.05);
  transition: all 0.3s;
  border: 1px solid #e2e8f0;
}

.solution-card:hover {
  transform: translateY(-6px);
  border-color: #22c55e;
  box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
}

.card-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.solution-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0f172a;
}

.solution-card p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 16px;
}

.card-stat {
  font-size: 12px;
  font-weight: 700;
  color: #22c55e;
  background: #f0fdf4;
  display: inline-block;
  padding: 4px 12px;
  border-radius: 30px;
}

/* Responsive */
@media (max-width: 1000px) {
  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .solution-grid {
    grid-template-columns: 1fr;
  }
  .solution-sec h2 {
    font-size: 32px;
  }
}
    /* Hero Grid - Desktop: 2 Spalten */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 40px;
}

/* Video Styling */
.hero-gif video {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* 📱 MOBILE: Unter 900px wird das Video unter den Text gesetzt */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .hero-gif {
    order: 2; /* Video kommt nach dem Text */
  }
  
  .hero-text {
    order: 1; /* Text bleibt oben */
    text-align: center;
  }
}
  .cta-premium {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0a0a0f 100%);
    overflow: hidden;
    isolation: isolate;
  }

  /* animierter Glow Hintergrund */
  .cta-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(34,197,94,0.15), transparent 60%),
                radial-gradient(ellipse 40% 30% at 30% 70%, rgba(99,102,241,0.1), transparent 50%);
    animation: ctaPulse 6s ease-in-out infinite alternate;
    pointer-events: none;
  }

  @keyframes ctaPulse {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.08); }
  }

  .cta-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }

  .cta-badge {
    display: inline-block;
    background: rgba(34,197,94,0.15);
    border: 1px solid rgba(34,197,94,0.4);
    backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: 60px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #86efac;
    margin-bottom: 32px;
  }

  .cta-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 28px;
  }

  .gradient-strike {
    background: linear-gradient(135deg, #ef4444, #f97316);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
  }

  .gradient-strike::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 55%;
    height: 2px;
    background: linear-gradient(90deg, #ef4444, #f97316);
    transform: rotate(-3deg);
  }

  .cta-divider {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 24px 0;
    color: #22c55e;
    font-size: 20px;
    letter-spacing: 4px;
    opacity: 0.6;
  }

  .cta-text {
    font-size: 20px;
    color: #cbd5e1;
    margin-bottom: 40px;
    line-height: 1.6;
  }

  .cta-text strong {
    color: #22c55e;
    font-weight: 700;
  }

  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 48px;
    flex-wrap: wrap;
  }

  .btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(95deg, #22c55e, #16a34a);
    color: #000;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 36px;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 8px 28px rgba(34,197,94,0.35);
  }

  .btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(34,197,94,0.5);
    gap: 16px;
  }

  .btn-cta-secondary {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-weight: 600;
    font-size: 16px;
    padding: 16px 36px;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.3s;
  }

  .btn-cta-secondary:hover {
    border-color: #22c55e;
    background: rgba(34,197,94,0.12);
    transform: translateY(-3px);
  }

  .cta-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .trust-item {
    font-size: 13px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    .cta-premium {
      padding: 80px 0;
    }
    .cta-title {
      font-size: 36px;
    }
    .cta-text {
      font-size: 18px;
    }
    .cta-buttons {
      flex-direction: column;
      align-items: center;
    }
    .cta-trust {
      gap: 16px;
    }
  }



  /* PROBLEM SECTION – SICHTBAR & PREMIUM */
  .problem-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0f 0%, #050508 100%);
    position: relative;
    overflow: hidden;
  }

  .problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #22c55e, #22c55e, transparent);
  }

  .section-badge {
    display: inline-block;
    background: rgba(34,197,94,0.15);
    border: 1px solid rgba(34,197,94,0.4);
    padding: 6px 16px;
    border-radius: 60px;
    font-size: 12px;
    font-weight: 600;
    color: #86efac;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
  }

  .gradient-text {
    background: linear-gradient(135deg, #22c55e, #86efac);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
  }

  .subtitle {
    font-size: 18px;
    color: #94a3b8;
    max-width: 600px;
    margin: 16px auto 0;
  }

  .problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 48px 0 32px;
  }

  .pain-card {
    background: rgba(15,23,42,0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(34,197,94,0.2);
    border-radius: 24px;
    padding: 32px 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .pain-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #22c55e, #86efac);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }

  .pain-card:hover {
    transform: translateY(-8px);
    border-color: rgba(34,197,94,0.5);
    background: rgba(20,30,50,0.9);
  }

  .pain-card:hover::after {
    transform: scaleX(1);
  }

  .pain-icon {
    font-size: 40px;
    margin-bottom: 20px;
  }

  .pain-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
  }

  .pain-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 20px;
  }

  .pain-stats {
    display: inline-block;
    background: rgba(239,68,68,0.15);
    border: 1px solid rgba(239,68,68,0.3);
    padding: 6px 14px;
    border-radius: 60px;
    font-size: 12px;
    font-weight: 700;
    color: #f87171;
  }

  .problem-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .problem-footer span {
    font-size: 13px;
    color: #64748b;
    letter-spacing: 0.02em;
  }

  /* RESPONSIVE */
  @media (max-width: 1024px) {
    .problem-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 640px) {
    .problem-grid {
      grid-template-columns: 1fr;
    }
    .problem-section {
      padding: 60px 0;
    }
  }

  