/* ==========================================================================
   STARKE CALL TO ACTION SECTION
   ========================================================================== */

.strong-cta {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  padding: 4rem 0;
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}

.strong-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../../../../images/ZB-Logo/zb_bg.png") center/cover;
  opacity: 0.05;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-title-accent {
  color: var(--color-accent);
  position: relative;
}

.cta-title-accent::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
}

.cta-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-accent);
  font-weight: 500;
}

.cta-feature svg {
  color: var(--color-accent);
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn--cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
  min-width: 200px;
  justify-content: center;
}

.btn--large {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
}

.btn--primary.btn--cta {
  background: var(--color-accent);
  color: white;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.btn--primary.btn--cta:hover {
  background: #c49e2f;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

.btn--secondary.btn--cta {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn--secondary.btn--cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-3px);
}

.btn--accent.btn--cta {
  background: #28a745;
  color: white;
  box-shadow: 0 4px 20px rgba(40, 167, 69, 0.3);
}

.btn--accent.btn--cta:hover {
  background: #218838;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(40, 167, 69, 0.5);
}

/* VERTRAUEN & SICHERHEIT */
.cta-trust {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

a.trust-badge--link {
  color: inherit;
  text-decoration: none;
}

.trust-badge svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

.trust-text strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: white;
}

.trust-text span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .strong-cta {
    padding: 3rem 0;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-description {
    font-size: 1.1rem;
  }
  
  .cta-features {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn--cta {
    width: 100%;
    max-width: 300px;
  }
  
  .trust-badges {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .trust-badge {
    padding: 0.8rem;
  }
}
