/**
 * Final CTA Section Styles
 * Стили для секции "Jetzt starten — völlig kostenlos"
 */

.final-cta-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Decorative gradient background - REMOVED for cleaner look */
.final-cta-section::before {
    display: none;
}

.final-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 10;
}

/* Title */
.final-cta-title {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 24px;
    line-height: 1.2;
    font-family: 'Space Grotesk', sans-serif;
}

.final-cta-highlight {
    color: #FF6B35;
}

/* Subtitle */
.final-cta-subtitle {
    font-size: 18px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* CTA Buttons */
.final-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
}

.final-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF9F1A 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.final-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.final-cta-btn i {
    font-size: 20px;
}

/* Note */
.final-cta-note {
    font-size: 14px;
    color: #6c757d;
    margin-top: 24px;
}

/* Responsive */
@media (max-width: 1024px) {
    .final-cta-title {
        font-size: 40px;
    }
    
    .final-cta-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .final-cta-section {
        padding: 80px 0;
    }
    
    .final-cta-title {
        font-size: 32px;
    }
    
    .final-cta-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .final-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 32px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.final-cta-container {
    animation: fadeInUp 0.6s ease-out forwards;
}
