/*
 * SBS DESIGN IMPROVEMENTS
 * Von Website 2.0 adaptiert für bessere Conversion
 * Erstellt: 2025-11-10
 */

/* ============================================
   1. PREMIUM CTA BUTTON
   ============================================ */

.cta-button-premium {
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #00d4ff 100%);
    color: #000;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-button-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button-premium:hover::before {
    left: 100%;
}

.cta-button-premium:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 255, 255, 0.6);
}

.cta-button-premium:active {
    transform: scale(0.98);
    box-shadow: 0 2px 10px rgba(0, 255, 255, 0.4);
}

/* Secondary CTA (für weniger wichtige Actions) */
.cta-button-secondary {
    background: transparent;
    color: var(--primary-cyan);
    padding: 1rem 2.5rem;
    border: 2px solid var(--primary-cyan);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button-secondary:hover {
    background: var(--primary-cyan);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
}

/* ============================================
   2. TYPOGRAPHY HIERARCHY
   ============================================ */

/* Main Headline (H1) */
.hero-title-improved {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle (H2) */
.hero-subtitle-improved {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Description Text */
.hero-description-improved {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-secondary);
    opacity: 0.85;
    max-width: 700px;
    margin: 0 auto;
}

/* Strong emphasis within text */
.text-highlight {
    color: var(--primary-cyan);
    font-weight: 600;
}

/* ============================================
   3. TESTIMONIAL BADGES
   ============================================ */

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 2rem auto;
    flex-wrap: wrap;
    max-width: 900px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.trust-badge:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.2);
}

.trust-badge-icon {
    font-size: 2rem;
    line-height: 1;
}

.trust-badge-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.trust-badge-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-cyan);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.trust-badge-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.8;
    white-space: nowrap;
}

/* ============================================
   4. HERO BACKGROUND GRADIENTS (verbessert)
   ============================================ */

.hero-background-improved {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    background: radial-gradient(
        ellipse at top,
        rgba(0, 255, 255, 0.15) 0%,
        transparent 50%
    ),
    radial-gradient(
        ellipse at bottom,
        rgba(138, 43, 226, 0.1) 0%,
        transparent 50%
    ),
    linear-gradient(
        180deg,
        rgba(8, 8, 18, 0.95) 0%,
        rgba(8, 8, 18, 0.98) 100%
    );
}

/* ============================================
   5. MICRO-ANIMATIONS (subtil)
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animations anwenden */
.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out backwards;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out backwards;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease-out backwards;
}

/* Staggered delays für mehrere Elemente */
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }

/* ============================================
   6. VALUE STACK BOX (Hormozi-Style)
   ============================================ */

.value-stack-box {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid var(--primary-cyan);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 600px;
    text-align: left;
    backdrop-filter: blur(10px);
}

.value-stack-header {
    font-size: 1.3rem;
    color: var(--primary-cyan);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.value-stack-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.value-stack-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.value-stack-item:hover {
    background: rgba(0, 255, 255, 0.05);
    transform: translateX(5px);
}

.value-stack-icon {
    color: #00ff88;
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1;
}

.value-stack-text {
    flex: 1;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-primary);
}

.value-stack-price {
    color: var(--primary-cyan);
    font-weight: 600;
}

.value-stack-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    text-align: center;
}

.value-stack-original-price {
    font-size: 1rem;
    color: var(--text-secondary);
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.value-stack-final-price {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-cyan);
}

.value-stack-discount {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-left: 0.5rem;
}

/* ============================================
   7. SCARCITY BANNER (Knappheit)
   ============================================ */

.scarcity-banner {
    background: linear-gradient(135deg, #ff6b00 0%, #ff0000 100%);
    color: white;
    padding: 1.25rem;
    border-radius: 12px;
    margin: 2rem auto;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    max-width: 600px;
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.3);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.scarcity-banner-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.scarcity-main {
    font-size: 1.2rem;
    font-weight: 700;
}

.scarcity-sub {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.95;
}

/* ============================================
   8. RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    /* CTA Button */
    .cta-button-premium {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        width: 100%;
        max-width: 320px;
    }

    /* Typography */
    .hero-title-improved {
        font-size: 2.2rem;
    }

    .hero-subtitle-improved {
        font-size: 1.2rem;
    }

    .hero-description-improved {
        font-size: 1rem;
    }

    /* Trust Badges */
    .trust-badges {
        gap: 1rem;
    }

    .trust-badge {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .trust-badge-icon {
        font-size: 1.5rem;
    }

    .trust-badge-value {
        font-size: 1.2rem;
    }

    .trust-badge-label {
        font-size: 0.75rem;
    }

    /* Value Stack */
    .value-stack-box {
        padding: 1.5rem;
        margin: 1.5rem 1rem;
    }

    .value-stack-final-price {
        font-size: 1.8rem;
    }

    /* Scarcity Banner */
    .scarcity-banner {
        padding: 1rem;
        font-size: 1rem;
        margin: 1.5rem 1rem;
    }

    .scarcity-main {
        font-size: 1.1rem;
    }
}

/* ============================================
   9. UTILITY CLASSES
   ============================================ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

/* ============================================
   10. PRINT STYLES (Optional)
   ============================================ */

@media print {
    .hero-background-improved,
    .particles,
    .grid-overlay {
        display: none;
    }

    .cta-button-premium {
        background: none;
        color: #000;
        border: 2px solid #000;
    }
}
