/* ======================================== */
/* CSS - BEDARFSANALYSE MIT HÄKCHEN BADGE   */
/* ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.needs-analysis-slim {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.analysis-container {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
}

/* Step Container */
.analysis-step-slim {
    background: white;
    border-radius: 32px;
    padding: 40px;
    display: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Step Badge */
.step-badge-slim {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0f0f0;
    padding: 6px 16px 6px 10px;
    border-radius: 50px;
    margin-bottom: 24px;
    font-size: 13px;
    color: #666;
}

.step-number-slim {
    background: #667eea;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Typography */
.title-slim {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.gradient {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.subtitle-slim {
    color: #888;
    font-size: 16px;
    margin-bottom: 28px;
}

/* 2-SPALTEN GRID */
.options-grid-slim {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

/* BUTTON mit HÄKCHEN BADGE */
.option-slim {
    position: relative;
    background: white;
    border: 1.5px solid #e0e0e0;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    text-align: left;
    color: #333;
    font-family: inherit;
}

.option-slim:hover {
    border-color: #667eea;
    background: #f8f9ff;
}

/* Ausgewählter Button mit Häkchen rechts unten */
.option-slim.selected {
    border-color: #667eea;
    background: #f8f9ff;
    padding-right: 36px;
}

.option-slim.selected::after {
    content: "✓";
    position: absolute;
    bottom: 6px;
    right: 8px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(102,126,234,0.3);
}

/* Counter */
.counter-slim {
    text-align: center;
    margin-bottom: 20px;
    font-size: 13px;
    color: #888;
}

.counter-slim span {
    font-size: 20px;
    font-weight: bold;
    color: #667eea;
}

/* Buttons */
.btn-primary-slim {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: transform 0.2s;
}

.btn-primary-slim:hover:not(:disabled) {
    transform: translateY(-2px);
}

.btn-primary-slim:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-secondary-slim {
    background: transparent;
    border: 1.5px solid #ddd;
    color: #666;
    padding: 12px 24px;
    border-radius: 40px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary-slim:hover {
    border-color: #667eea;
    color: #667eea;
}

.button-group-slim {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.button-group-slim .btn-primary-slim {
    width: auto;
    flex: 1;
}

/* Liste der ausgewählten Probleme */
.list-slim {
    background: #f8f9ff;
    border-radius: 16px;
    padding: 20px;
    margin: 20px 0;
}

.list-item-slim {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
    color: #333;
}

.list-item-slim:last-child {
    border-bottom: none;
}

/* Step 3 - Modern */
/* ===== STEP 3 ONLY ===== */

.input-modern {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 16px;
    margin-bottom: 24px;
    font-family: inherit;
}

.input-modern:focus {
    outline: none;
    border-color: #667eea;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    cursor: pointer;
}

.checkbox-item input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label {
    font-size: 14px;
    color: #333;
}

.checkbox-hint {
    font-size: 12px;
    color: #999;
    margin-left: 30px;
    margin-top: -8px;
    margin-bottom: 20px;
}

.required {
    color: #e74c3c;
}

.whatsapp-button {
    background: #25D366;
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-bottom: 16px;
}

.whatsapp-button:hover:not(:disabled) {
    background: #128C7E;
}

.whatsapp-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.back-button {
    background: none;
    border: none;
    color: #999;
    font-size: 14px;
    cursor: pointer;
    width: 100%;
    padding: 12px;
}

.back-button:hover {
    color: #667eea;
}

/* Result */
.result-slim {
    background: white;
    border-radius: 32px;
    padding: 48px 40px;
    text-align: center;
    display: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.result-icon-slim {
    font-size: 64px;
    margin-bottom: 20px;
}

.result-title-slim {
    font-size: 28px;
    color: #2e7d32;
    margin-bottom: 16px;
}

.result-message-slim {
    font-size: 16px;
    color: #555;
    margin-bottom: 24px;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 600px) {
    .options-grid-slim {
        grid-template-columns: 1fr;
    }
    
    .analysis-step-slim {
        padding: 28px 20px;
    }
    
    .title-slim {
        font-size: 26px;
    }
    
    .button-group-slim {
        flex-direction: column;
    }
    
    .button-group-slim .btn-primary-slim {
        width: 100%;
    }
}

/* RUNDER ORIGINAL WHATSAPP BUTTON */
.whatsapp-wrapper {
    display: flex;
    justify-content: center;
    margin: 24px 0;
}

.whatsapp-round {
    background: #25D366;
    border: none;
    border-radius: 60px;
    padding: 16px 32px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    font-weight: 600;
    color: white;
    font-family: inherit;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-round svg {
    width: 24px;
    height: 24px;
}

.whatsapp-round:hover:not(:disabled) {
    background: #128C7E;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.whatsapp-round:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.whatsapp-round span {
    font-weight: 500;
}
/* Category Buttons für Step 2 */
.option-category {
    background: white;
    border: 1.5px solid #e0e0e0;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    text-align: left;
    color: #333;
    font-family: inherit;
}

.option-category:hover {
    border-color: #667eea;
    background: #f8f9ff;
}

.option-category.selected {
    border-color: #667eea;
    background: #f8f9ff;
    position: relative;
}

.option-category.selected::after {
    content: "✓";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #667eea;
    font-weight: bold;
}

/* Modern Video Modal */
.video-modal-modern {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal-modern.active {
    display: flex;
    animation: fadeInModal 0.3s ease forwards;
}

@keyframes fadeInModal {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(8px);
    }
}

.video-modal-container {
    position: relative;
    max-width: 1000px;
    width: 90%;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.video-modal-modern.active .video-modal-container {
    transform: scale(1);
}

.video-header {
    position: absolute;
    top: -60px;
    right: 0;
    left: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    z-index: 10;
}

.video-close {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: white;
}

.video-close:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
    rotate: 90deg;
}

.video-badge {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    color: white;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-footer {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}

.video-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(102,126,234,0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease 0.2s;
}

.video-modal-modern.active .video-cta {
    opacity: 1;
    transform: translateY(0);
}

.video-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(102,126,234,0.4);
}

/* Moderner Demo Button auf der Landingpage */
.btn-demo-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 14px 28px;
    border-radius: 60px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-demo-modern:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.5);
}

.btn-demo-modern svg {
    width: 20px;
    height: 20px;
}
button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,255,204,0.4);
}

.highlight {
    color: #00FFCC;
}

.roi-stats {
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    padding: 15px 25px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #00FFCC;
}

.stat-label {
    font-size: 12px;
    color: rgba(28, 28, 29, 0.7);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.benefit-card {
    background: white;
    border-radius: 24px;
    padding: 24px;
    text-align: center;
}

.benefit-card span {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
}

.testimonials {
    background: #f8f9ff;
    padding: 60px 20px;
}
.channels-sec.viral {
  padding: 100px 24px;
  background: linear-gradient(135deg, #eff6ff, #fef9c3, #fce7f3);
  text-align: center;
}

.channels-sec.viral h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  font-weight: 800;
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.channel-card {
  background: white;
  padding: 30px 20px;
  border-radius: 20px;
  text-decoration: none;
  color: #111;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.channel-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.gif-icon{
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}